-
-
Notifications
You must be signed in to change notification settings - Fork 644
/
package.json
232 lines (232 loc) · 8.03 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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
{
"name": "dim",
"version": "6.88.0",
"description": "An item manager for Destiny.",
"main": "app/index.html",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"test": "cross-env NODE_ENV=test jest --verbose",
"lint": "jsonsort src/locale && eslint --fix src --ext .js,.ts,.tsx && stylelint --fix \"src/**/*.scss\"",
"lint-check": "eslint src --ext .js,.ts,.tsx --cache --cache-location .eslintcache",
"bundle": "webpack --config ./config/webpack.js",
"build-release": "cross-env NODE_ENV=production npm run bundle -s -- --env release",
"build-beta": "cross-env NODE_ENV=production npm run bundle -s -- --env beta",
"build-dev": "npm run bundle -s -- --env.name=dev --watch",
"viz": "npm run bundle -s -- --env.name=dev --env.WEBPACK_VISUALIZE",
"i18n": "i18next-scanner",
"watch": "npm run build-dev -s",
"start": "webpack serve --config ./config/webpack.js --env dev",
"publish-beta": "npm run build-beta -s && grunt publish_beta",
"publish-release": "npm run build-release -s && grunt publish_release",
"pretty": "prettier --write 'src/**/*.{js,ts,tsx,scss,html}'",
"install": "git submodule update --init --recursive",
"dead-code": "ts-prune -s '*.test.ts?' | grep -v cssExports | grep -v 'used in module'"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/DestinyItemManager/DIM.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/DestinyItemManager/DIM/issues"
},
"homepage": "https://destinyitemmanager.com",
"browserslist": [
"Chrome >= 79",
"last 2 ChromeAndroid versions",
"last 2 FirefoxAndroid versions",
"last 2 Firefox versions",
"Firefox ESR",
"last 2 Safari versions",
"iOS >= 12",
"last 2 Edge versions",
"last 2 Opera versions"
],
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.6.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/plugin-transform-react-inline-elements": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/plugin-transform-typescript": "^7.6.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@packtracker/webpack-plugin": "^2.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@sentry/cli": "^1.30.4",
"@testing-library/react": "^12.0.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/circuit-breaker-js": "^0.0.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.0",
"@types/mousetrap": "^1.6.8",
"@types/node": "^16.3.1",
"@types/papaparse": "^5.0.0",
"@types/prop-types": "^15.5.2",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dnd-multi-backend": "^6.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.0.3",
"@types/react-router": "^5.1.11",
"@types/react-router-dom": "^5.1.4",
"@types/react-test-renderer": "^17.0.1",
"@types/react-transition-group": "^4.2.0",
"@types/react-virtualized": "^9.21.1",
"@types/use-subscription": "^1.0.0",
"@types/uuid": "^8.0.0",
"@types/valid-url": "^1.0.2",
"@types/webpack-env": "^1.15.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"autoprefixer": "^10.0.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.0.2",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-optimize-clsx": "^2.5.0",
"babel-plugin-transform-imports": "^2.0.0",
"browserslist": "^4.0.0",
"clean-webpack-plugin": "^4.0.0",
"content-security-policy-builder": "^2.0.0",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.0",
"cross-fetch": "^3.1.4",
"css-loader": "^6.2.0",
"css-modules-typescript-loader": "^4.0.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-array-func": "^3.1.7",
"eslint-plugin-css-modules": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-react-redux": "^3.1.0",
"fork-ts-checker-notifier-webpack-plugin": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^6.0.1",
"generate-json-webpack-plugin": "^2.0.0",
"grunt": "^1.0.2",
"grunt-cli": "^1.2.0",
"grunt-rsync": "^3.0.0",
"html-loader": "^2.1.0",
"html-webpack-plugin": "^5.0.0",
"husky": "^4.0.6",
"i18next-scanner-dim": "^2.11.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.0.6",
"json-sort-cli": "^2.0.1",
"lodash-webpack-plugin": "^0.11.5",
"markdown-loader": "^6.0.0",
"mini-css-extract-plugin": "^2.1.0",
"mini-svg-data-uri": "^1.1.3",
"mkcert": "^1.2.0",
"node-sass": "^6.0.0",
"notify-webpack-plugin": "^2.0.0",
"postcss": "^8.0.9",
"postcss-loader": "^6.1.0",
"prettier": "^2.0.4",
"prettier-plugin-organize-imports": "^2.0.0",
"pretty-quick": "^3.0.0",
"react-refresh": "^0.10.0",
"react-test-renderer": "^17.0.2",
"sass-loader": "^12.1.0",
"source-map-loader": "^3.0.0",
"style-loader": "^3.0.0",
"stylelint": "^13.0.0",
"svgo": "^2.2.1",
"svgo-loader": "^3.0.0",
"terser-webpack-plugin": "^5.0.2",
"ts-loader": "^9.1.1",
"ts-prune": "^0.10.0",
"ts-unused-exports": "^7.0.3",
"typescript": "^4.0.2",
"webpack": "^5.1.3",
"webpack-bundle-analyzer": "^4.1.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.0.0",
"webpack-notifier": "^1.6.0",
"workbox-webpack-plugin": "^6.1.0"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"@d2api/d2api-types": "^1.0.2",
"@d2api/date": "^3.0.0",
"@destinyitemmanager/dim-api-types": "^1.0.0",
"@fortawesome/fontawesome-free": "^5.12.1",
"@fortawesome/fontawesome-svg-core": "^1.2.27",
"@fortawesome/react-fontawesome": "^0.1.8",
"@popperjs/core": "^2.2.1",
"@react-hook/resize-observer": "^1.2.0",
"@sentry/browser": "^6.1.0",
"@sentry/react": "^6.0.1",
"@sentry/tracing": "^6.0.1",
"@textcomplete/core": "^0.1.9",
"@textcomplete/textarea": "^0.1.9",
"body-scroll-lock": "^3.1.5",
"bungie-api-ts": "^4.5.0",
"caniuse-lite": ">=1.0.30000843",
"ceaser-easing": "^1.0.1",
"clsx": "^1.0.4",
"comlink": "^4.3.0",
"core-js": "^3.6.0",
"downshift": "^6.0.2",
"fast-copy": "^2.0.1",
"fast-equals": "^2.0.0",
"framer-motion": "^4.0.0",
"i18next": "^20.2.2",
"i18next-http-backend": "^1.0.21",
"idb-keyval": "^3.1.0",
"immer": "^9.0.2",
"lodash": "^4.17.8",
"memoize-one": "^5.0.0",
"mousetrap": "^1.6.2",
"papaparse": "^5.0.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-dnd": "^14.0.1",
"react-dnd-html5-backend": "^14.0.0",
"react-dnd-multi-backend": "^6.0.2",
"react-dnd-touch-backend": "^14.0.0",
"react-dom": "^17.0.1",
"react-dropzone": "^11.0.1",
"react-redux": "^7.0.0-beta.1",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-spring": "^8.0.27",
"react-transition-group": "^4.0.0",
"react-twitter-widgets": "^1.7.1",
"react-use-gesture": "^7.0.4",
"react-virtualized": "^9.21.0",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"safari-14-idb-fix": "^3.0.0",
"typesafe-actions": "^5.1.0",
"ua-parser-js": "^0.7.17",
"use-subscription": "^1.5.1",
"uuid": "^8.0.0",
"valid-url": "^1.0.9",
"voca": "^1.4.0",
"workbox-cacheable-response": "^6.1.0",
"workbox-core": "^6.1.0",
"workbox-expiration": "^6.1.0",
"workbox-precaching": "^6.1.0",
"workbox-routing": "^6.1.0",
"workbox-strategies": "^6.1.0",
"workbox-window": "^6.1.0"
}
}