This repository has been archived by the owner on Jan 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.73 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
{
"name": "pokemon-berry",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"reset": "rm -rf node_modules/ && rm -f app/public/js/*",
"dev:client": "npx webpack --watch",
"dev:server": "nodemon --ignore ./app/client/ ./app/index.js",
"dev": "npm-run-all --parallel dev:*",
"lint": "npx eslint app/",
"lint:fix": "npx eslint --fix app/",
"build": "npx webpack --env production",
"start": "NODE_ENV=production node ./app/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@colyseus/command": "^0.1.7",
"@colyseus/social": "^0.11.7",
"colyseus": "^0.14.17",
"colyseus.js": "^0.14.12",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"firebase": "^8.7.0",
"firebase-admin": "^9.10.0",
"helmet": "^4.6.0",
"mongoose": "^5.13.2",
"nes.css": "^2.3.0",
"phaser": "^3.55.2",
"phaser3-rex-plugins": "^1.1.56",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.3",
"react-firebaseui": "^5.0.2",
"react-resizable": "^3.0.4",
"react-router-dom": "^5.2.0",
"uniqid": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.13.13",
"babel-loader": "^8.2.2",
"css-loader": "^5.2.6",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"nodemon": "^2.0.9",
"npm-run-all": "^4.1.5",
"style-loader": "^2.0.0",
"webpack": "^5.42.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
}
}