-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.39 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
48
49
50
51
52
53
54
55
56
57
{
"name": "room-booking-tcd",
"version": "1.0.0",
"private": true,
"description": "A web app for booking group study rooms throughout Trinity",
"main": "server/Server.js",
"author": "luke <luke_lau@icloud.com>",
"license": "MIT",
"scripts": {
"dev": "next",
"start": "node server/Server.js",
"heroku-postbuild": "cd client && yarn install && yarn build",
"build": "cd client && npm install && npm run build"
},
"dependencies": {
"body-parser": "^1.17.1",
"bootstrap": "next",
"cheerio": "^1.0.0-rc.1",
"dotenv": "^4.0.0",
"express": "^4.15.0",
"isomorphic-fetch": "^2.2.1",
"keen-js": "^3.4.1",
"next": "^4.2.3",
"path-match": "^1.2.4",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-svg": "^2.1.19",
"react-transition-group": "^1.1.3",
"reactstrap": "^4.6.2",
"read": "^1.0.7"
},
"repository": {
"type": "git",
"url": "https://github.com/mars/heroku-cra-node.git"
},
"keywords": [
"node",
"heroku",
"react"
],
"now": {
"env": {
"scssUsername": "@scssusername",
"scssPassword": "@scsspassword",
"KEEN_API_URL": "https://api.keen.io:443",
"KEEN_PROJECT_ID": "59072cb90935ce40a59fb1cc",
"KEEN_READ_KEY": "@keenreadkey",
"KEEN_WRITE_KEY": "@keenwritekey",
"TZ": "Europe/London"
}
},
"devDependencies": {
"raw-loader": "^0.5.1"
}
}