-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "boardherobackend",
"version": "1.0.0",
"description": "BoardHero app backend",
"scripts": {
"lint": "eslint \"tools/**/*.ts\" \"src/**/*.ts\" --no-fix",
"init-db": "tools/shell/init-db.sh",
"clear-games": "tools/shell/clear-games.sh",
"populate-db": "tsc --project tools/ts/tsconfig.json && node ./tmp/tool-build/populateDB.js",
"refresh-games": "npm run clear-games && npm run populate-db",
"clear-users": "tools/shell/clear-users.sh",
"select-all": "tools/shell/select-all.sh",
"serve": "tsc --project tsconfig.json && node ./dist/app.js",
"serve-dev": "nodemon"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint",
"prepare-commit-msg": "./tools/shell/prepare-commit-msg.sh"
}
},
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"connect-redis": "^4.0.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"pg": "^8.2.1",
"redis": "^3.0.2",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-redis": "0.0.14",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
"@types/pg": "^7.14.3",
"@types/redis": "^2.8.22",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.3.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"typescript": "^3.9.5"
}
}