-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.71 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": "my-personal-starter-react-setup",
"version": "0.0.0",
"engines": {
"node": ">=8.0.0"
},
"main": "server.js",
"scripts": {
"client": "cd client && yarn start",
"start": "NODE_ENV=production babel-node server.js",
"server": "NODE_ENV=development nodemon --exec babel-node server.js",
"postinstall": "cd client && yarn && yarn build",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"nuke-dependencies": "rm -rf node_modules rm -f yarn.lock && cd client && rm -rf node_modules && rm -f yarn.lock",
"delete-dependencies": "rm -rf node_modules && cd client && rm -rf node_modules",
"dangerously-rebuild": "yarn nuke-dependencies && yarn && cd client && yarn",
"rebuild": "yarn delete-dependencies && yarn && cd client && yarn",
"generate": "cd client && yarn generate",
"force-build": "cd client && FORCE_BUILD=1 yarn build",
"initdb": "babel-node setup/initdb.js",
"dumpdb": "babel-node setup/dumpdb.js",
"force-publish": "heroku pg:reset && heroku pg:push my-local-database-name DATABASE_URL --app my-heroku-app-name; git push heroku master",
"resolve": "yarn && cd client && yarn"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@turf/turf": "^5.1.6",
"chalk": "^2.4.2",
"concurrently": "^4.1.0",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"find-process": "^1.4.1",
"isomorphic-fetch": "^2.2.1",
"lodash.groupby": "^4.6.0",
"pg": "^7.8.1",
"proj4": "^2.4.4",
"url": "^0.11.0",
"yargs": "^13.2.1"
},
"devDependencies": {
"husky": "^2.3.0"
}
}