This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 174
/
package.json
141 lines (141 loc) · 4.64 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
136
137
138
139
140
141
{
"name": "reactql",
"version": "4.5.0",
"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.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@graphql-codegen/cli": "^1.1.3",
"@graphql-codegen/fragment-matcher": "^1.1.3",
"@graphql-codegen/typescript": "^1.1.3",
"@graphql-codegen/typescript-operations": "^1.1.3",
"@graphql-codegen/typescript-react-apollo": "^1.1.3",
"@hot-loader/react-dom": "^16.8.6",
"@types/compression-webpack-plugin": "^2.0.0",
"@types/graphql": "^14.2.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.40",
"@types/koa-send": "^4.1.2",
"@types/koa-webpack": "^5.0.1",
"@types/lodash": "^4.14.126",
"@types/mini-css-extract-plugin": "^0.2.0",
"@types/node": "^12.0.0",
"@types/prop-types": "^15.7.1",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"@types/react-hot-loader": "^4.1.0",
"@types/react-router-dom": "^4.3.3",
"@types/require-from-string": "^1.2.0",
"@types/source-map-support": "^0.5.0",
"@types/webpack": "^4.4.31",
"@types/webpack-dev-server": "^3.1.5",
"@types/webpack-node-externals": "^1.6.3",
"@types/ws": "^6.0.1",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.6",
"babel-plugin-emotion": "^10.0.9",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^2.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^2.1.1",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.2.0",
"koa-webpack": "^5.2.3",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"lint-staged": "^8.1.6",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.12.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.6.0",
"prettier": "^1.17.0",
"require-from-string": "^2.0.2",
"resolve-url-loader": "^3.1.0",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"source-map-support": "^0.5.12",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"webpack": "^4.31.0"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.11",
"apollo-cache-inmemory": "^1.5.1",
"apollo-client": "^2.5.1",
"apollo-link": "^1.2.11",
"apollo-link-error": "^1.1.10",
"apollo-link-http": "^1.5.14",
"apollo-link-state": "^0.4.2",
"apollo-link-ws": "^1.0.17",
"apollo-utilities": "^1.2.1",
"bufferutil": "^4.0.1",
"chalk": "^2.4.2",
"cross-env": "^5.2.0",
"cross-fetch": "^3.0.2",
"dotenv": "^8.0.0",
"emotion": "^10.0.9",
"graphql": "^14.3.0",
"graphql-tag": "^2.10.1",
"history": "^4.9.0",
"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": "^5.9.4",
"mobx-react-lite": "^1.3.2",
"ora": "^3.4.0",
"react": "^16.8.6",
"react-addons-css-transition-group": "^15.6.2",
"react-addons-transition-group": "^15.6.2",
"react-apollo": "^2.5.5",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.8.4",
"react-router-dom": "^5.0.0",
"subscriptions-transport-ws": "^0.9.16",
"utf-8-validate": "^5.0.2"
}
}