forked from amoragues95/blockbusterExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 965 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 965 Bytes
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": "sf-express",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node app.js",
"test": "mocha --exit",
"migrate": "npx sequelize-cli db:migrate",
"seeds": "npx sequelize-cli db:seed:all",
"cobertura": "nyc mocha"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"dot-env": "^0.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jest": "^29.0.3",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"node-fetch": "^3.2.9",
"nodemailer": "^6.8.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.23.2",
"sinon": "^14.0.0"
},
"description": "",
"devDependencies": {
"@babel/helper-compilation-targets": "^7.19.1",
"assert": "^2.0.0",
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"sequelize-cli": "^6.4.1",
"supertest": "^6.2.4"
}
}