-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.49 KB
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
{
"name": "slitherio",
"version": "0.0.1",
"description": "Slitherio clone",
"dependencies": {
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"nodemon": "^2.0.21",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"stats.js": "^0.17.0",
"tinycolor2": "^1.6.0",
"webpack": "^5.76.1"
},
"main": "webpack.common.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"lint": "eslint --cache --ext .js,.jsx src/",
"lintfix": "eslint --cache --ext .js,.jsx src/ --fix",
"develop": "npm run open && cross-env NODE_ENV=development nodemon --watch src/server/ --watch src/shared/ src/server/server.js",
"server": "cross-env NODE_ENV=development nodemon --watch src/server/ --watch src/shared/ src/server/server.js",
"start": "npm run open && cross-env NODE_ENV=production node src/server/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"open": "start http://localhost:3000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PawelManczak/Slither.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PawelManczak/Slither.io/issues"
},
"homepage": "https://github.com/PawelManczak/Slither.io#readme",
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"html-webpack-plugin": "^5.5.0",
"webpack-cli": "^5.0.1",
"webpack-dev-middleware": "^6.0.1"
}
}