-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "geoguesser",
"version": "1.0.0",
"scripts": {
"start": "concurrently --kill-others-on-fail \"npm run client\" \"npm run server\"",
"build-ts": "tsc --project tsconfig.json",
"postinstall": "npm run build-ts",
"client": "cd client && npm start",
"server": "nodemon server.ts",
"server-static": "npm run build-ts && node lib/server.js",
"lint-staged": "lint-staged"
},
"devDependencies": {
"@types/bluebird": "^3.5.29",
"@types/connect-pg-simple": "^4.2.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/passport": "^1.0.2",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-google-oauth20": "^2.0.3",
"@types/pg": "^7.14.1",
"concurrently": "^5.0.2",
"husky": "^4.0.0",
"lint-staged": "^9.5.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-pg-simple": "^6.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.0",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.17.0",
"pg-hstore": "^2.3.3",
"react-google-button": "^0.7.0",
"sequelize": "^5.21.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write",
"git add"
]
}
}