-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.31 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": "ndi-cybersim-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"author": "Rolan Szoke (fwalkwithm@gmail.com)",
"license": "ISC",
"scripts": {
"start": "nodemon -r dotenv/config . | pino-pretty",
"migrate": "knex migrate:latest",
"unmigrate": "knex migrate:rollback",
"seed": "knex seed:run",
"reset-db": "npm run unmigrate && npm run migrate && npm run seed",
"lint": "eslint .",
"test": "jest --runInBand"
},
"dependencies": {
"@types/jest": "^26.0.8",
"airtable": "^0.11.2",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"express": "^4.17.1",
"express-pino-logger": "5.0.0",
"helmet": "4.0.0",
"knex": "^0.21.2",
"pg": "^8.3.0",
"pino": "6.5.0",
"socket.io": "^4.5.0",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "26.2.2",
"nodemon": "2.0.4",
"pino-pretty": "4.1.0",
"prettier": "^2.0.5",
"supertest": "4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run test"
}
}
}