-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.65 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
{
"name": "RollRace",
"version": "0.1.0",
"private": true,
"description": "RollRace is an online, multiplayer, sidescrolling racing game that pits friends and foes alike in a race to the death (and against time).",
"engines": {
"node": "10.15.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run watch --prefix server\" \"npm start --prefix client\"",
"heroku-postbuild": "npm install --prefix client && npm install --only=dev --no-shrinkwrap --prefix client && npm run build --prefix client && npm install --prefix server"
},
"cacheDirectories": [
"client/node_modules",
"server/node_modules"
],
"keywords": [],
"contributors": [
"Kibet Gad <[email protected]>",
"Kai DeLorenzo <[email protected]>",
"Elijah Peake <[email protected]>",
"Anthony Turcios <[email protected]>",
"Bryan Diaz <[email protected]>",
"Joshua Ravishankar <[email protected]>"
],
"license": "Apache-2.0",
"devDependencies": {
"concurrently": "^4.1.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{client/src,server}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"pg": "^7.10.0",
"pg-promise": "^8.6.5",
"react-jss": "^8.6.1"
},
"start": "node -r dotenv/config index.js",
"watch": "nodemon --exec 'node -r dotenv/config' --ignore '*.test.js' index.js"
}