forked from aaronago/pomo-gitto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.12 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
{
"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"
},
"engines": {
"node": "7.5.0"
},
"cacheDirectories": [
"node_modules",
"server/node_modules",
"client/node_modules"
],
"author": "Joe Turner <[email protected]>",
"license": "MIT",
"dependencies": {
"cross-env": "^3.1.4",
"dotenv": "^4.0.0",
"express": "^4.14.1",
"http-proxy-middleware": "^0.17.3",
"npm-run-all": "^4.0.1",
"xp": "^1.0.1"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.2"
}
}