-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.12 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
{
"name": "boardgame-server",
"version": "0.1.0",
"description": "Sandboxed boardgame with chat",
"main": "src/server.js",
"scripts": {
"dev": "nodemon --watch src/server.js src/server.js",
"lint": "eslint src",
"prettier:js": "prettier --write \"src/**/*.js\"",
"start": "cross-env NODE_ENV=production node src/server.js"
},
"author": "Cédric Bazureau",
"keywords": [
"Board Game",
"Sandbox"
],
"engines": {
"node": ">=12"
},
"license": "MIT",
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"nodemon": "^2.0.6",
"prettier": "^2.2.1"
},
"dependencies": {
"compression": "^1.7.4",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"socket.io": "^2.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*": [
"prettier --write --ignore-unknown",
"npm run lint"
]
}
}