-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 895 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 895 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
{
"name": "my-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"serve": "nodemon ./bin/www",
"migrate": "node database/migrations/migrate.js",
"rollback": "node database/migrations/rollback.js",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.4",
"morgan": "~1.9.1",
"nodemailer": "^6.7.7"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^25.5.4",
"superagent": "^8.0.0",
"supertest": "^6.2.4",
"tslint": "^6.1.3",
"typescript": "^4.6.4"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}