-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "shopping-list-app",
"version": "1.0.0",
"description": "Final Bloc project",
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=test&& jasmine",
"test-server": "set NODE_ENV=test&& node index.js",
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"author": "Nils Rohe",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.6.1",
"helmet": "^3.23.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"sequelize": "^5.22.3",
"sequelize-cli": "^5.5.1",
"socket.io": "^2.3.0"
},
"devDependencies": {
"jasmine": "^3.6.1",
"nodemon": "^1.19.4"
}
}