-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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": "constructionsafety",
"version": "1.0.0",
"description": "",
"main": "index.js",
"jest": {
"setupTestFrameworkScriptFile": "./tests/setup.js"
},
"scripts": {
"start": "node index.js",
"server": "nodemon index.js --ignore tests",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"heroku-postbuild": "npm run build",
"test": "jest"
},
"author": "Volodymyr Lipunov",
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^1.7.0",
"aws-sdk": "^2.240.1",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"concurrently": "^3.5.1",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"jest": "^22.4.3",
"moment": "^2.22.1",
"mongoose": "^5.1.1",
"node-schedule": "^1.3.0",
"nodemon": "^1.17.4",
"passport": "^0.4.0",
"passport-google-oauth20": "^1.0.0",
"passport-local": "^1.0.0",
"path-parser": "^4.1.0",
"puppeteer": "^1.4.0",
"redis": "^2.8.0",
"uuid": "^3.2.1"
}
}