-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1001 Bytes
/
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
{
"name": "blogs-api",
"version": "0.1.0",
"private": true,
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"eslint-config-trybe-backend": "1.0.3",
"express": "4.17.1",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.3.1",
"sequelize": "6.3.4",
"shelljs": "0.8.4"
},
"scripts": {
"prestart": "npx sequelize-cli db:create && npx sequelize-cli db:migrate $",
"start": "node src/api",
"drop": "npx sequelize-cli db:drop $",
"seed": "npx sequelize-cli db:seed:all $",
"test": "jest --runInBand",
"test-coverage": "jest --runInBand --coverage",
"debug": "nodemon src/api",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json ."
},
"devDependencies": {
"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",
"sequelize-cli": "^6.2.0",
"supertest": "4.0.2"
}
}