-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "run-it-back",
"version": "0.1.0",
"private": true,
"description": "Run It Back Pickup Game Application",
"engines": {
"node": "12.14.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"npm run start --prefix server\" \"npm start --prefix client\"",
"lint": "npm run lint --prefix client && npm run lint --prefix server"
},
"cacheDirectories": [
"client/node_modules",
"server/node_modules"
],
"keywords": [],
"contributors": [
"Stephan Perreault <sperreault@middlebury.edu>"
],
"license": "Apache-2.0",
"devDependencies": {
"concurrently": "^5.0.2",
"husky": "^4.2.0",
"lint-staged": "^10.0.1",
"prettier": "^1.19.1",
"styled-components": "^5.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{client/src,server}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"bootstrap": "^4.4.1",
"knex": "^0.21.1",
"reactstrap": "^8.4.1"
}
}