-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "reactql",
"version": "3.6.1",
"description": "ReactQL - front-end React/GraphQL starter kit",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production ts-node index.ts",
"clean": "rimraf dist",
"clean-production": "npm run clean && npm run production",
"lint": "tslint --project .",
"production": "cross-env NODE_ENV=production ts-node index.ts",
"static": "cross-env NODE_ENV=production ts-node index.ts",
"start": "cross-env ts-node index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Lee Benson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@types/compression-webpack-plugin": "^0.4.2",
"@types/history": "^4.7.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.0.46",
"@types/koa-router": "^7.0.32",
"@types/koa-send": "^4.1.1",
"@types/koa-webpack": "^5.0.1",
"@types/lodash": "^4.14.117",
"@types/mini-css-extract-plugin": "^0.2.0",
"@types/node": "^10.12.0",
"@types/ora": "^1.3.4",
"@types/prop-types": "^15.5.6",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-helmet": "^5.0.7",
"@types/react-hot-loader": "^4.1.0",
"@types/react-router-dom": "^4.3.1",
"@types/require-from-string": "^1.2.0",
"@types/source-map-support": "^0.4.1",
"@types/styled-components": "^4.0.1",
"@types/webpack": "^4.4.17",
"@types/webpack-node-externals": "^1.6.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.8.0",
"brotli-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"css-hot-loader": "^1.4.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.5",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"koa-webpack": "^5.1.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^3.0.0",
"require-from-string": "^2.0.2",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.9",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.3",
"webpack": "^4.21.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"apollo-cache-inmemory": "^1.3.5",
"apollo-client": "^2.4.2",
"apollo-link": "^1.2.3",
"apollo-link-error": "^1.1.1",
"apollo-link-http": "^1.5.5",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.9",
"apollo-utilities": "^1.0.21",
"chalk": "^2.4.1",
"cross-env": "^5.2.0",
"cross-fetch": "^2.2.2",
"dotenv": "^6.1.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"history": "^4.7.2",
"kcors": "^2.2.2",
"koa": "^2.5.3",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"lodash": "^4.17.11",
"microseconds": "^0.1.0",
"ora": "^3.0.0",
"react": "^16.5.2",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-apollo": "^2.2.4",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.11",
"react-router-dom": "^4.3.1",
"styled-components": "^4.0.2",
"subscriptions-transport-ws": "^0.9.15"
}
}