-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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": "my-api-template",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"test": "NODE_OPTIONS=--experimental-vm-modules LOG_LEVEL=ERROR jest --forceExit",
"lint": "eslint --ignore-path .gitignore .",
"init-db": "node scripts/initdb.js -w"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"connect-pg-simple": "^6.2.1",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"es-main": "^1.0.2",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-session": "^1.17.1",
"googleapis": "^66.0.0",
"graphql": "^15.4.0",
"join-monster": "^3.0.1",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pg": "^8.5.1"
},
"devDependencies": {
"@jest/globals": "^27.4.4",
"@types/jest": "^26.0.19",
"babel-eslint": "^10.1.0",
"csv-parser": "^3.0.0",
"eslint": "^7.16.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"husky": "^4.3.6",
"jest": "^27.4.4",
"nodemon": "^2.0.6",
"pg-native": "^3.0.0",
"supertest": "^6.0.1",
"yargs": "^17.3.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint -s",
"pre-push": "npm test -s"
}
},
"engines": {
"node": ">=16.0.0"
},
"type": "module"
}