-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.13 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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
{
"name": "blogs-api",
"version": "0.1.0",
"private": true,
"dependencies": {
"dotenv": "8.2.0",
"eslint-config-trybe-backend": "1.0.3",
"express": "4.17.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "2.1.0",
"sequelize": "6.3.4",
"shelljs": "0.8.4",
"sinon-chai": "^3.7.0"
},
"scripts": {
"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 $",
"debug": "nodemon index.js",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json .",
"pretest": "npm run drop && npm run prestart && npm run seed",
"test": "mocha ./tests/**/*$NAME*.test.js --exit"
},
"devDependencies": {
"chai": "^4.3.6",
"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.2.2",
"nodemon": "^2.0.15",
"sequelize-cli": "6.2.0",
"sinon": "^13.0.1",
"supertest": "4.0.2"
}
}