forked from leebenson/reactql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 4.38 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "reactql",
"version": "4.2.1",
"description": "ReactQL - front-end React/GraphQL starter kit",
"main": "index.js",
"scripts": {
"build:production": "cross-env RUNNER=build NODE_ENV=production ts-node index.ts",
"build:static": "cross-env RUNNER=static NODE_ENV=production ts-node index.ts",
"clean": "rimraf dist",
"dev": "cross-env RUNNER=development NODE_ENV=development ts-node index.ts",
"dev:static": "cross-env RUNNER=static NODE_ENV=development ts-node index.ts",
"gen:graphql": "gql-gen --config codegen.yml",
"lint": "prettier -c \"src/**\"",
"lint:save": "prettier --write \"src/**\"",
"precommit": "npm run lint:save && npm test",
"production": "cross-env RUNNER=production NODE_ENV=production ts-node index.ts",
"production:clean": "npm run clean && npm run production",
"start": "npm run dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write \"src/**\"",
"git add"
]
},
"author": "Lee Benson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@hot-loader/react-dom": "^16.8.2",
"@types/compression-webpack-plugin": "^2.0.0",
"@types/history": "^4.7.2",
"@types/html-webpack-plugin": "^3.2.0",
"@types/kcors": "^2.2.3",
"@types/koa": "^2.0.48",
"@types/koa-router": "^7.0.39",
"@types/koa-send": "^4.1.1",
"@types/koa-webpack": "^5.0.1",
"@types/lodash": "^4.14.121",
"@types/mini-css-extract-plugin": "^0.2.0",
"@types/node": "^11.9.4",
"@types/ora": "^3.0.0",
"@types/prop-types": "^15.5.9",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.2",
"@types/react-helmet": "^5.0.8",
"@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.2",
"@types/webpack": "^4.4.24",
"@types/webpack-dev-server": "^3.1.2",
"@types/webpack-node-externals": "^1.6.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.5",
"babel-plugin-emotion": "^10.0.7",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^2.0.0",
"css-hot-loader": "^1.4.3",
"css-loader": "^2.1.0",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"graphql-code-generator": "^0.16.1",
"graphql-codegen-typescript-client": "^0.16.1",
"graphql-codegen-typescript-common": "^0.16.1",
"graphql-codegen-typescript-react-apollo": "^0.16.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"koa-webpack": "^5.2.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.4",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.5.0",
"prettier": "^1.16.4",
"require-from-string": "^2.0.2",
"resolve-url-loader": "^3.0.1",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.10",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3",
"webpack": "^4.29.5",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@emotion/core": "^10.0.7",
"@emotion/styled": "^10.0.7",
"apollo-cache-inmemory": "^1.4.3",
"apollo-client": "^2.4.13",
"apollo-link": "^1.2.8",
"apollo-link-error": "^1.1.7",
"apollo-link-http": "^1.5.11",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.14",
"apollo-utilities": "^1.1.3",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"cross-fetch": "^3.0.1",
"dotenv": "^6.2.0",
"emotion": "^10.0.7",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"history": "^4.7.2",
"kcors": "^2.2.2",
"koa": "^2.7.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"lodash": "^4.17.11",
"microseconds": "^0.1.0",
"mobx": "^4.9.2",
"mobx-react": "^5.4.3",
"ora": "^3.1.0",
"react": "^16.8.2",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-apollo": "^2.4.1",
"react-dom": "^16.8.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.7.0",
"react-router-dom": "^4.3.1",
"subscriptions-transport-ws": "^0.9.15"
}
}