-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
191 lines (191 loc) · 6.45 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
{
"name": "react-apollo7",
"version": "0.1.0",
"description": "Starter kit for creating apps with React, Redux and Antd",
"author": "Adam Kassama",
"license": "MIT",
"private": true,
"engines": {
"npm": ">=3",
"node": "7.2.1",
"yarn": "0.24.5"
},
"scripts": {
"preinstall": "node tools/nodeVersionCheck.js",
"setup": "node tools/setup/setup.js",
"remove-demo": "babel-node tools/removeDemo.js",
"pre-start-message": "babel-node tools/preStartMessage.js",
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel pre-start-message",
"start": "npm-run-all --parallel build:dll lint:styled-components lint:watch test:watch open:src start-message heroku:json",
"start:app-and-mock": "npm-run-all --parallel build:dll test:watch open:src lint:watch lint:styled-components start:mock",
"start:mock": "npm run drakov:config && drakov",
"drakov:config": "babel-node tools/updateDrakovConfig.js",
"open:src": "babel-node tools/srcServer.js",
"open:build": "babel-node tools/buildServer.js",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"lint:styled-components": "npm-watch stylelint:styled-components",
"stylelint:styled-components": "stylelint --config .stylelintrc.components './client/src/components/**/*.js' || true",
"style:sassmq": "babel-node tools/updateSassMqVars.js",
"clean-build": "npm run remove-build && mkdir ./client/build",
"remove-build": "rimraf ./client/build",
"prebuild": "npm run clean-build && npm run lint && npm run test",
"build:preview": "npm run prebuild && npm run build:dll && babel-node tools/build.js && npm run heroku:json && npm run open:build",
"build:prod": "npm run prebuild && npm run build:dll && babel-node tools/build.js && npm run heroku:json",
"build:dll": "babel-node tools/build.dll.js",
"heroku:json": "babel-node tools/updateHerokuAppJSON.js",
"heroku-postbuild": "yarn --production=false && yarn run build:prod",
"test": "export JEST_HIDE_USAGE=1 && jest --config ./.jest.config",
"test:CI": "babel-node tools/testCi.js",
"test:cover": "npm run test -- --coverage ",
"test:cover:CI": "npm run test:CI -- --coverage && cat ./coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test:watch": "npm run test -- --watch",
"open:cover": "npm run test:cover && opn ./coverage/lcov-report/index.html",
"analyze-bundle": "babel-node ./tools/analyzeBundle.js"
},
"watch": {
"stylelint:styled-components": {
"patterns": [
"src"
],
"extensions": "js,jsx",
"ignore": "src/build/**",
"quiet": true
}
},
"dependencies": {
"axios": "^0.16.2",
"babel-plugin-polished": "^1.1.0",
"body-parser": "^1.17.2",
"bowser": "^1.7.0",
"compression": "^1.6.2",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.1.4",
"less": "^2.7.2",
"object-assign": "4.1.0",
"open": "^0.0.5",
"path": "^0.12.7",
"polished": "^1.1.3",
"react": "15.5.4",
"react-background-image-loader": "^0.0.5",
"react-dom": "15.5.4",
"react-image": "^1.0.1",
"react-redux": "5.0.5",
"react-router": "3.0.5",
"react-router-redux": "4.0.8",
"redux": "3.6.0",
"redux-actions": "^2.0.3",
"redux-api-middleware": "^1.0.3",
"redux-auth-wrapper": "^1.1.0",
"redux-axios-middleware": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "2.1.0",
"sass-mq": "^3.3.2",
"styled-components": "^2.1.0",
"webpack": "2.6.1"
},
"devDependencies": {
"antd": "2.11.2",
"autoprefixer": "6.5.4",
"babel-cli": "6.18.0",
"babel-core": "6.20.0",
"babel-eslint": "7.1.1",
"babel-jest": "18.0.0",
"babel-loader": "6.2.10",
"babel-plugin-import": "^1.2.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-styled-components": "^1.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-react-constant-elements": "6.9.1",
"babel-plugin-transform-react-remove-prop-types": "0.2.11",
"babel-polyfill": "6.20.0",
"babel-preset-env": "1.3.2",
"babel-preset-react": "6.16.0",
"babel-preset-react-hmre": "1.1.1",
"babel-preset-stage-1": "6.16.0",
"browser-sync": "2.18.5",
"chalk": "^1.1.3",
"connect-history-api-fallback": "1.3.0",
"coveralls": "2.11.15",
"css-loader": "0.26.1",
"doiuse": "^3.0.0",
"drakov": "^1.0.4",
"enzyme": "2.8.2",
"errorhandler": "^1.5.0",
"eslint": "3.12.2",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-react": "6.8.0",
"eslint-watch": "2.1.14",
"express": "^4.15.3",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "0.9.0",
"html-webpack-plugin": "2.24.1",
"identity-obj-proxy": "3.0.0",
"install": "^0.10.1",
"jest": "18.1.0",
"json-loader": "0.5.4",
"json-update": "^3.0.0",
"less-loader": "^4.0.4",
"mockdate": "2.0.1",
"node-sass": "4.5.2",
"npm-run-all": "3.1.2",
"npm-watch": "^0.1.9",
"opn-cli": "3.1.0",
"postcss-cli": "^4.1.0",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "1.2.1",
"postcss-scss": "^1.0.1",
"prompt": "1.0.0",
"prop-types": "15.5.10",
"react-hot-loader": "3.0.0-beta.6",
"react-test-renderer": "15.5.4",
"redux-immutable-state-invariant": "1.2.4",
"replace": "0.3.0",
"rimraf": "2.5.4",
"sass-loader": "6.0.2",
"style-loader": "0.13.1",
"stylelint": "^7.11.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-processor-styled-components": "^0.1.2",
"stylelint-webpack-plugin": "^0.7.0",
"svg-inline-loader": "^0.7.1",
"url-loader": "0.5.7",
"webpack-bundle-analyzer": "2.1.1",
"webpack-dev-middleware": "1.9.0",
"webpack-hot-middleware": "2.17.1",
"webpack-md5-hash": "0.0.5"
},
"keywords": [
"react",
"reactjs",
"react-router",
"redux-axios-middleware",
"react-api-middleware",
"react-auth-wrapper",
"drakov",
"api",
"blueprint",
"mock",
"antd",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"redux",
"flux",
"boilerplate",
"starter",
"styled-components"
],
"repository": {
"type": "git",
"url": "https://github.com/strivedata/react-apollo7"
}
}