-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "crud-nodejs",
"version": "0.0.0",
"private": true,
"main": "./src/index.js",
"scripts": {
"develop": "nodemon --inspect=0.0.0.0:9229 ./src/index.js",
"start": "node ./src/index.js",
"api": "mocha ./src/test/apiTest/apitest.js",
"test:unit": "jest --config tests/unit/jest.config.js",
"test:integration": "jest --config tests/integration/jest.config.js",
"test:acceptance": "jest --config tests/unit/jest.config.js",
"test": "npm run test:unit -- --watchAll && npm run test:acceptance -- --watchAll"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "~4.16.0",
"express-flash": "0.0.2",
"express-pino-logger": "^5.0.0",
"express-session": "^1.17.1",
"jest-junit": "^11.1.0",
"mysql2": "^2.1.0",
"nodemon": "^2.0.4",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"pino": "^6.6.0",
"pino-pretty": "^4.2.1",
"sequelize": "^6.3.4"
},
"devDependencies": {
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.4.2",
"supertest": "^4.0.2"
}
}