-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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": "livesotope",
"version": "0.1.0",
"private": true,
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^5.0.0-beta.1",
"@graphile/subscriptions-lds": "^4.4.0-rc.1",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-http": "^1.5.14",
"apollo-link-ws": "^1.0.17",
"graphql-tag": "^2.10.1",
"isotope-layout": "^3.0.6",
"postgraphile": "^4.4.0-rc.1",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"react-flip-move": "^3.0.3",
"react-scripts": "3.0.0",
"subscriptions-transport-ws": "^0.9.16"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"postgraphile": "postgraphile -c livesotope -s app_public --watch --append-plugins @graphile-contrib/pg-simplify-inflector,@graphile/subscriptions-lds --live --port 9393",
"random": "nodemon random.js",
"dev": "concurrently --kill-others --names pg,ra \"npm run postgraphile\" \"npm run start\" \"npm run random\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [">0.2%", "not dead", "not op_mini all"],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"concurrently": "^4.1.0",
"nodemon": "^1.19.0"
}
}