-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 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
{
"name": "wanted_backend",
"version": "1.0.0",
"description": "wanted_backend_assignment3",
"author": "const",
"private": true,
"scripts": {
"start": "set DEBUG=src*& set NODE_ENV=production& nodemon ./bin/www",
"debug": "set DEBUG=src*& set NODE_ENV=development& nodemon ./bin/www",
"before": "npm install pm2 -g",
"test": "set NODE_ENV=test& jest --runInBand --detectOpenHandles",
"coverage": "jest --coverage"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"mysql2": "^2.3.3",
"sequelize": "^6.9.0",
"sequelize-cli": "^6.3.0"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^5.5.3",
"jest": "^27.3.1",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.13",
"prettier": "2.4.1",
"sqlite3": "^5.0.2",
"supertest": "^6.1.6"
}
}