-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
80 lines (80 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "mazegame",
"displayName": "The Maze Game",
"version": "1.1.0",
"description": "A simple but interesting maze game",
"main": "index.js",
"scripts": {
"install-deps": "npm install",
"start": "http-server -o",
"build": "npm run start",
"test": "http-server -o",
"serve": "http-server -o",
"dev:python": "cd src/python && pip install -r requirements.txt && python main.py",
"backend": "cd src/python && pip install -r requirements.txt && python main.py"
},
"keywords": [
"movie",
"database",
"app",
"interactive",
"search",
"view",
"details",
"save",
"favorites",
"list",
"themoviedb",
"api",
"javascript",
"react",
"movieverse"
],
"author": "Son Nguyen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hoangsonww/The-Maze-Game.git"
},
"bugs": {
"url": "https://github.com/hoangsonww/The-Maze-Game/issues"
},
"homepage": "https://hoangsonww.github.io/The-Maze-Game/",
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"cordova-android": "^12.0.1",
"cordova-ios": "^7.0.1",
"electron": "^29.1.0",
"electron-builder": "^24.9.1",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-react": "^7.33.2",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"open": "^10.1.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"cordova": {
"platforms": [
"android",
"ios"
]
},
"dependencies": {
"express": "^4.19.2",
"node": "^16.20.2",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.0.0",
"react-router-dom": "^6.21.2",
"redux": "^4.1.2"
}
}