-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
{
"name": "editor",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:8080",
"engines": {
"node": "^7"
},
"dependencies": {
"@std/esm": "^0.2.2",
"aframe": "^0.6.1",
"aframe-particle-system-component": "^1.0.10",
"aframe-react": "^4.3.0",
"aframe-terrain-model-component": "^0.2.3",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"fast-simplex-noise": "^3.2.0",
"graphql-server-express": "^1.0.0",
"graphql-subscriptions": "^0.4.4",
"graphql-tools": "^1.1.0",
"isomorphic-fetch": "^2.2.1",
"material-design-icons": "^3.0.1",
"minimist": "^1.2.0",
"pg": "6.3.3",
"pg-hstore": "^2.3.2",
"pg-native": "^2.0.1",
"pm2": "^2.5.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-apollo": "^1.4.2",
"react-dom": "^15.6.1",
"react-redux": "^5.0.5",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.2",
"react-router-redux": "^4.0.8",
"redux-form": "^7.0.3",
"reselect": "^3.0.1",
"seedrandom": "^2.4.3",
"sequelize": "^4.3.2",
"sequelize-cli": "^2.7.0",
"sequelize-postgres": "^1.7.0",
"subscriptions-transport-ws": "^0.8.1",
"tachyons": "4.7.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-flowtype": "^2.35.0",
"flow-bin": "^0.51.0",
"react-scripts": "1.0.7"
},
"scripts": {
"start-client": "pm2 delete --silent web; pm2 start react-scripts --name web -- start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"flow": "flow",
"start-server": "pm2 startOrRestart ecosystem.config.js",
"start-all": "yarn run start-server && yarn run start-client",
"db:migrate": "node_modules/.bin/sequelize db:migrate",
"migration:create": "node_modules/.bin/sequelize migration:create"
}
}