-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.14 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": "blogs-api",
"version": "0.1.0",
"private": true,
"dependencies": {
"cli-color": "^2.0.0",
"cors": "^2.8.5",
"eslint-config-trybe-backend": "1.0.3",
"express": "4.17.1",
"http-status-codes": "^2.1.4",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "2.1.0",
"pg": "^8.8.0",
"sequelize": "6.3.4",
"shelljs": "0.8.4",
"swagger-ui-express": "^4.1.6"
},
"scripts": {
"init": "node index.js",
"prestart": "npx sequelize-cli db:create && npx sequelize-cli db:migrate $",
"start": "node index.js",
"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": {
"dotenv": "^9.0.2",
"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",
"nodemon": "^2.0.7",
"sequelize-cli": "6.2.0",
"supertest": "4.0.2"
}
}