-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "f1stories-node",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./app.js",
"test": "npm run reset-db && mocha",
"db-up": "db-migrate up --config ./config/database.json",
"db-down": "db-migrate down --config ./config/database.json",
"reset-db": "npm run db-down && npm run db-up"
},
"dependencies": {
"and": "^0.0.3",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"db-migrate": "^0.11.13",
"db-migrate-mysql": "^2.2.0",
"debug": "~2.6.9",
"dotenv": "^16.0.0",
"express": "~4.16.1",
"express-fileupload": "^1.3.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.2.2",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"pug": "^3.0.2",
"swagger-autogen": "^2.21.2",
"swagger-ui-express": "^4.4.0"
},
"main": "app.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"eslint": "^8.13.0"
}
}