-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "mafia",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec 'node -r esm ./server/server.js'",
"build": "next build",
"start": "cross-env NODE_ENV=production node -r esm ./server/server.js",
"test": "jest --watch",
"test-ci": "jest --ci",
"lint": "eslint --fix --max-warnings=0 ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Very-Best-Games/mafia.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Very-Best-Games/mafia/issues"
},
"homepage": "https://github.com/Very-Best-Games/mafia#readme",
"dependencies": {
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.3.0",
"cookie-parser": "^1.4.5",
"cross-env": "^7.0.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-session": "^1.17.1",
"husky": "^4.3.0",
"jest": "^26.4.0",
"lint-staged": "^10.3.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.12",
"next": "^9.5.3",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.11",
"session-file-store": "^1.4.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run test-ci && lint-staged"
}
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.0",
"prettier": "2.1.2"
}
}