-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.01 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
42
43
44
45
46
47
{
"name": "CTTI_PROPHETIC",
"version": "1.0.0",
"description": "React client with Node API on Heroku built for the CTTI Prophetic project",
"author": "@caseychoiniere",
"license": "MIT",
"engines": {
"node": "6.11.x"
},
"scripts": {
"start": "node server",
"dev": "nodemon --watch server",
"heroku-postbuild": "cd client/ && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"cacheDirectories": [
"node_modules",
"client/node_modules"
],
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"helmet": "^3.12.0",
"jwks-rsa": "^1.3.0",
"mongoose": "^5.4.14",
"morgan": "^1.9.1",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"nodemon": "^1.18.3"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"CTTI",
"PROPHETIC",
"Open database",
"node",
"heroku",
"create-react-app",
"react"
]
}