-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
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
42
43
44
45
46
47
{
"name": "challenge-bank",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm install -g yarn && yarn install && cd client && yarn install",
"test": "echo \"Error: no test specified\" && exit 1",
"client": "cd client && yarn start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.6.1",
"nodemon": "^1.17.5",
"use-yarn": "^2.2.0"
},
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"chance": "^1.0.16",
"contentful": "^7.9.1",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"heroku-ssl-redirect": "0.0.4",
"http-status": "^1.2.0",
"joi": "^13.6.0",
"md5": "^2.2.1",
"moment": "^2.22.2",
"moment-timezone": "^0.5.21",
"mongoose": "^5.2.9",
"passport": "^0.4.0",
"passport-http-header-strategy": "^1.0.4",
"passport-local": "^1.0.0",
"passport-token": "^0.2.0",
"react-bootstrap": "^0.32.3",
"react-spinners": "^0.4.5",
"react-table": "^6.8.6",
"react-tippy": "^1.2.2",
"uuid": "^3.3.0"
}
}