-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 935 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 935 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
{
"name": "blog-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"deploy": "git push heroku master",
"watch": "cross-env NODE_ENV=development nodemon index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"start:test": "cross-env NODE_ENV=test node index.js",
"logs:prod": "heroku logs --tail"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-jest": "^23.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.7",
"mongoose-unique-validator": "^2.0.3",
"nodemon": "^1.19.4",
"prop-types": "^15.7.2"
},
"devDependencies": {
"cross-env": "^6.0.3",
"jest": "^24.9.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node"
}
}