-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "blogs-api",
"version": "0.1.0",
"private": true,
"main": "./src/api/server.js",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"eslint-config-trybe-backend": "1.0.3",
"express": "^4.17.1",
"express-rescue": "^1.1.31",
"http-status-codes": "^2.1.4",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.1.0",
"node-fetch": "^3.0.0",
"sequelize": "^6.3.4",
"shelljs": "0.8.4"
},
"scripts": {
"prestart": "npx sequelize-cli db:create && npx sequelize-cli db:migrate $",
"start": "node .",
"dev": "nodemon .",
"drop": "npx sequelize-cli db:drop $",
"seed": "npx sequelize-cli db:seed:all $",
"test": "jest --runInBand",
"test-coverage": "jest --runInBand --coverage",
"debug": "nodemon index.js",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json ."
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.1",
"frisby": "2.1.2",
"jest": "26.0.1",
"mocha": "^9.1.2",
"nodemon": "^2.0.13",
"nyc": "^15.1.0",
"sequelize-cli": "^6.2.0",
"sequelize-test-helpers": "^1.4.2",
"sinon": "^11.1.2",
"supertest": "4.0.2"
}
}