-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.22 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": "blog-list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"client": "cd ../blog-app && npm start",
"server": "cross-env NODE_ENV=development nodemon index.js",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"build:ui": "rm -rf build && cd ../blog-app && npm run build --prod && cp -r build ../blog-app-api",
"deploy": "git push heroku master",
"deploy:full": "npm run build:ui && git add . && git commit -m uibuild && npm run deploy",
"logs:prod": "heroku logs --tail",
"lint": "eslint .",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand",
"start:test": "cross-env NODE_ENV=test node index.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.1.0",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mongoose": "^5.8.1",
"mongoose-unique-validator": "^2.0.3"
},
"jest": {
"testEnvironment": "node"
}
}