-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.31 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": "thinkful-full-stack-template-v2",
"version": "0.1.0",
"description": "A full-stack starter template",
"main": "index.js",
"scripts": {
"start": "node index.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm run build",
"dev": "run-p dev:server dev:client start",
"dev:client": "cd client && cross-env BROWSER=none npm start -- --color=always | xp http://localhost:3000/ http://localhost:8080/",
"dev:server": "cd server && npm start",
"install": "run-s install:server install:client",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install"
},
"cacheDirectories": [
"node_modules",
"server/node_modules",
"client/node_modules"
],
"author": "Joe Turner <[email protected]>",
"license": "MIT",
"dependencies": {
"cross-env": "^3.1.4",
"express": "^4.14.1",
"http-proxy-middleware": "^0.17.3",
"immutability-helper": "^2.1.2",
"jquery": "^3.2.1",
"material-ui": "^0.17.1",
"npm-run-all": "^4.0.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^3.0.2",
"react-toastr": "^2.8.2",
"reactstrap": "^4.3.0",
"web3": "^0.18.2",
"xp": "^1.0.1"
}
}