forked from sysgears/apollo-universal-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
199 lines (199 loc) · 6.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
{
"name": "apollo-universal-starter-kit",
"private": true,
"version": "1.0.0",
"engines": {
"yarn": ">= 1.0.0"
},
"scripts": {
"build": "lerna run --scope={server,client,mobile} --parallel build --stream",
"clean": "lerna run clean --stream",
"start": "lerna run --scope=server start --stream",
"watch": "lerna run --scope={server,client} --parallel watch --stream",
"watch:vue": "cross-env SSR=false lerna run --scope={server,client-vue} --parallel watch --stream",
"watch:angular": "cross-env SSR=false lerna run --scope={server,client-angular} --parallel watch --stream",
"watch:android": "lerna run --scope={server,mobile} --parallel watch:android --stream",
"watch:ios": "lerna run --scope={server,mobile} --parallel watch:ios --stream",
"watch-client": "cross-env SSR=false lerna run --scope=client watch --stream",
"watch-server": "cross-env SSR=false lerna run --scope=server watch --stream",
"storybook": "lerna run --scope=client storybook --stream",
"cli": "node tools/cli",
"stripe:setup": "lerna run --scope=server stripe:setup",
"seed": "lerna run --scope=server seed --stream",
"migrate": "lerna run --scope=server migrate",
"rollback": "lerna run --scope=server rollback",
"exp": "yarn --cwd packages/mobile exp",
"exp-publish": "lerna run --scope=mobile exp-publish --stream",
"test": "yarn tests && yarn lint",
"tests": "lerna run --parallel tests --stream",
"tests:watch": "lerna run --parallel tests:watch --stream",
"lint": "yarn eslint && yarn tslint",
"eslint": "eslint --fix --ext js --ext jsx --ext json .",
"tslint": "tslint --fix -p tsconfig.json -c tslint.json",
"heroku-postbuild": "lerna run --parallel heroku-postbuild --stream",
"precommit": "lint-staged",
"postinstall": "opencollective postinstall"
},
"lint-staged": {
"*.{js,jsx,json}": [
"eslint --fix",
"git add"
],
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.graphql": [
"prettier --parser graphql --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/sysgears/apollo-universal-starter-kit"
},
"bugs": {
"url": "https://github.com/sysgears/apollo-universal-starter-kit/issues"
},
"homepage": "https://github.com/sysgears/apollo-universal-starter-kit",
"keywords": [
"apollo",
"universal",
"starter",
"graphql",
"react",
"redux"
],
"author": "SysGears INC",
"license": "MIT",
"workspaces": [
"config",
"packages/*",
"modules/**/client-react",
"modules/**/client-react-native",
"modules/**/client-angular",
"modules/**/client-vue",
"modules/**/common",
"modules/**/common-react",
"modules/**/server-ts"
],
"greenkeeper": {
"ignore": [
"graphql"
]
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/apollo-universal-starter-kit",
"logo": "https://opencollective.com/opencollective/logo.txt"
},
"devDependencies": {
"@alienfast/i18next-loader": "^1.0.15",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/plugin-transform-for-of": "^7.0.0",
"@babel/plugin-transform-regenerator": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"@loadable/babel-plugin": "^5.10.0",
"@loadable/webpack-plugin": "^5.7.1",
"autoprefixer": "^9.5.0",
"babel-core": "^7.0.0-0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-import": "^1.7.0",
"babel-preset-minify": "^0.5.0-alpha.5a128fd5",
"babel-preset-vue": "^2.0.2",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^1.0.0",
"core-js": "^3.1.3",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^2.0.0",
"fork-ts-checker-webpack-plugin": "^0.4.9",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.0",
"husky": "^1.1.2",
"ignore-loader": "^0.1.2",
"isomorphic-style-loader": "^4.0.0",
"jest": "^24.8.0",
"jest-transform-graphql": "^2.1.0",
"jest-transform-stub": "^2.0.0",
"lerna": "^3.4.0",
"less": "^3.0.2",
"less-loader": "^4.1.0",
"lint-staged": "^7.1.2",
"mini-css-extract-plugin": "^0.4.1",
"node-sass": "^4.7.2",
"openurl": "^1.1.1",
"postcss-loader": "^3.0.0",
"prettier": "^1.9.2",
"regenerator-runtime": "^0.13.2",
"qrcode-terminal": "^0.12.0",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.1",
"source-list-map": "^2.0.0",
"style-loader": "^0.23.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"ts-loader": "^4.5.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.4.5",
"uglifyjs-webpack-plugin": "^1.3.0",
"url-loader": "^1.0.1",
"vue-loader": "^15.5.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.22",
"wait-on": "^3.2.0",
"webpack": "^4.33.0",
"webpack-cli": "^3.3.3",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.3",
"webpack-manifest-plugin": "^2.0.3",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2",
"webpack-shell-plugin": "^0.5.0",
"webpack-sources": "^1.1.0",
"webpack-virtual-modules": "^0.1.10",
"whatwg-fetch": "^2.0.4"
},
"dependencies": {
"inquirer": "^6.2.2",
"lodash": "^4.17.11",
"opencollective": "^1.0.3"
},
"resolutions": {
"fbjs": "^1.0.0",
"hard-source-webpack-plugin": "https://github.com/conorh/hard-source-webpack-plugin",
"kleur": "^3.0.3",
"immutability-helper": "2.8.1",
"graphql": "14.1.1",
"iterall": "^1.2.2",
"upath": "^1.1.0",
"watchpack": "https://github.com/Globegitter/watchpack"
}
}