-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "dmdb",
"version": "0.1.0",
"private": true,
"description": "COSC61 team 2 final porject",
"engines": {
"node": "12.14.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",
"lint": "npm run lint --prefix client && npm run lint --prefix server"
},
"cacheDirectories": [
"client/node_modules",
"server/node_modules"
],
"keywords": [],
"contributors": [
"Guanghan Pan <[email protected]>"
],
"license": "Apache-2.0",
"devDependencies": {
"concurrently": "^5.0.2",
"husky": "^4.2.0",
"lint-staged": "^10.0.1",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{client/src,server}/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"react-google-login": "^5.1.20"
}
}