-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
200 lines (200 loc) · 6.71 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
200
{
"name": "quintro",
"version": "1.1.2",
"description": "Classic marble game in HTML",
"repository": {
"type": "git",
"url": "git://github.com/turnerhayes/quintro"
},
"engines": {
"npm": ">=7",
"node": ">=15"
},
"author": "Turner Hayes <dev@turnerhayes.com>",
"license": "MIT",
"scripts": {
"analyze:clean": "rimraf stats.json",
"preanalyze": "npm run analyze:clean",
"analyze": "node ./internals/scripts/analyze.js",
"npmcheckversion": "node ./internals/scripts/npmcheckversion.js",
"preinstall": "npm run npmcheckversion",
"postinstall": "npm run build:dll && npm run install:app:sockets",
"install:app:sockets": "cd ./server/apps/socket && npm install",
"prebuild": "npm run build:clean",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color --progress --hide-modules",
"build:clean": "rimraf ./dist",
"build:dll": "node ./internals/scripts/dependencies.js",
"start": "cross-env NODE_ENV=development nodemon server --debug",
"start:tunnel": "cross-env NODE_ENV=development ENABLE_TUNNEL=true node server --debug",
"start:production": "npm run test && npm run build && npm run start:prod",
"start:prod": "cross-env NODE_ENV=production node server",
"presetup": "npm i chalk shelljs",
"setup": "node ./internals/scripts/setup.js",
"postsetup": "npm run build:dll",
"clean": "shjs ./internals/scripts/clean.js",
"clean:all": "npm run analyze:clean && npm run test:clean && npm run build:clean",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"lint:staged": "lint-staged",
"pretest": "npm run lint",
"test:clean": "rimraf ./coverage",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env jest --watchAll",
"coverage": "cross-env NODE_ENV=test jest --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"heroku-postbuild": "npm run build",
"docs:clean": "rimraf docs",
"docs": "npm run docs:clean; jsdoc -R README.md -p --package ./package.json -c ./.jsdoc.config.json -t ./node_modules/ink-docstrap/template -r -d docs",
"docs:view": "node ./internals/scripts/viewdocs.js"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"@material-ui/core": "^4.0.0",
"@material-ui/icons": "^4.0.0",
"@material-ui/lab": "^4.0.0-alpha.13",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"babel-polyfill": "6.23.0",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"chalk": "^1.1.3",
"classnames": "^2.2.6",
"clipboard": "^2.0.4",
"compression": "^1.7.4",
"connect-mongo": "^2.0.3",
"connected-react-router": "^6.4.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"cross-env": "5.0.0",
"dotenv": "^5.0.1",
"express": "^4.17.0",
"express-session": "^1.16.1",
"fontfaceobserver": "2.0.9",
"history": "4.6.3",
"hoist-non-react-statics": "2.1.1",
"howler": "^2.1.2",
"http-status-codes": "^1.3.2",
"immutable": "3.8.1",
"intl": "1.2.5",
"invariant": "2.2.2",
"ip": "1.1.5",
"jss": "^9.8.7",
"localforage": "^1.7.3",
"lodash": "^4.17.11",
"minimist": "1.2.3",
"mkdirp": "^0.5.1",
"mongodb": "^3.6.6",
"mongoose": "^5.12.7",
"morgan": "^1.9.1",
"normalize.css": "^7.0.0",
"notifyjs": "^3.0.0",
"passport": "^0.4.0",
"passport-facebook-rwky": "^2.3.1",
"passport-google-oauth20": "^1.0.0",
"passport-twitter": "^1.0.4",
"prop-types": "15.5.10",
"proper-url-join": "^1.2.0",
"qs": "^6.7.0",
"react": "^16.8.6",
"react-bem-helper": "^1.4.1",
"react-dom": "^16.8.6",
"react-helmet": "5.1.3",
"react-hot-loader": "^4.8.8",
"react-immutable-proptypes": "^2.1.0",
"react-intl": "^2.9.0",
"react-loadable": "^5.5.0",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"redux": "3.6.0",
"redux-immutable": "4.0.0",
"redux-saga": "0.15.3",
"reselect": "3.0.1",
"rfr": "^1.2.3",
"shortid": "^2.2.14",
"socket.io-client": "^2.2.0",
"spdy": "^4.0.2",
"styled-components": "^3.4.10",
"warning": "3.0.0",
"webpack-bundle-analyzer": "^3.3.2",
"whatwg-fetch": "2.0.3",
"winston": "^2.4.4"
},
"devDependencies": {
"@babel/runtime": "^7.4.5",
"add-asset-html-webpack-plugin": "2.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-dynamic-import-node": "1.0.2",
"babel-plugin-react-intl": "2.3.1",
"babel-plugin-react-transform": "2.0.2",
"babel-plugin-styled-components": "1.1.4",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-react-constant-elements": "6.23.0",
"babel-plugin-transform-react-inline-elements": "6.22.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"circular-dependency-plugin": "3.0.0",
"copy-webpack-plugin": "^4.6.0",
"coveralls": "^3.0.3",
"css-loader": "0.28.4",
"enhanced-resolve": "^4.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-webpack": "0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-redux-saga": "^0.6.0",
"eventsource-polyfill": "0.9.6",
"exports-loader": "0.6.4",
"fetch-mock": "^6.5.2",
"file-loader": "0.11.1",
"flux-standard-action": "^2.1.0",
"glob": "^7.1.4",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.29.0",
"image-webpack-loader": "^7.0.1",
"imports-loader": "0.7.1",
"ink-docstrap": "^1.3.2",
"isomorphic-fetch": "^2.2.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"jest-enzyme": "^6.1.2",
"jest-immutable-matchers": "^2.0.1",
"jsdoc": "^3.6.2",
"jsdom": "^15.1.0",
"lint-staged": "3.5.1",
"mock-socket": "^7.1.0",
"ngrok": "2.2.9",
"nodemon": "^1.19.1",
"null-loader": "0.1.1",
"offline-plugin": "^5.0.7",
"opn": "^5.5.0",
"postcss-loader": "^2.1.6",
"pre-commit": "1.2.2",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.3",
"rimraf": "2.6.1",
"shelljs": "^0.7.8",
"sinon": "^4.5.0",
"style-loader": "0.18.1",
"url-loader": "^1.1.2",
"webpack": "3.5.5",
"webpack-dev-middleware": "^2.0.6",
"webpack-hot-middleware": "2.18.0"
}
}