forked from joshhunt/destinyDataExplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 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
{
"name": "destiny-data-explorer",
"version": "0.2.0",
"private": true,
"dependencies": {
"@destiny-item-manager/zip.js": "github:DestinyItemManager/zip.js",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.12",
"@types/react-router": "^5.1.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-select": "^3.0.28",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/tiny-async-pool": "1.0.0",
"assign-deep": "^1.0.1",
"axios": "^0.21.0",
"bungie-api-ts": "^4.19.0",
"classnames": "^2.2.5",
"dequal": "^2.0.2",
"file-loader": "^6.2.0",
"imports-loader": "^1.2.0",
"lodash": "^4.17.4",
"memoize-one": "^5.1.1",
"merge-deep": "^3.0.3",
"normalize-text": "^2.3.1",
"openapi-types": "^7.0.1",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"promise-worker": "^2.0.1",
"react": "^17.0.1",
"react-animate-height": "^2.0.23",
"react-app-rewired": "^2.1.8",
"react-data-grid": "7.0.0-canary.33",
"react-dom": "^17.0.1",
"react-json-tree": "^0.13.0",
"react-modal": "^3.5.1",
"react-redux": "^7.2.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-select": "^3.1.1",
"react-syntax-highlighter": "^15.4.3",
"react-tabs": "^3.1.2",
"react-transition-group": "^4.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rot": "^0.1.0",
"sass": "^1.30.0",
"sql.js": "github:DestinyItemManager/sql.js",
"tiny-async-pool": "1.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.0.3",
"worker-loader": "^3.0.6",
"worker-plugin": "^5.0.1"
},
"scripts": {
"update-api-spec": "curl https://raw.githubusercontent.com/Bungie-net/api/master/openapi-2.json > ./src/lib/apispec.json",
"update-api-spec-v3": "curl https://raw.githubusercontent.com/Bungie-net/api/master/openapi.json > ./src/lib/apispecv3.json",
"start": "yarn run update-api-spec && yarn run update-api-spec-v3 && react-app-rewired start",
"build": "yarn run update-api-spec && yarn run update-api-spec-v3 && react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"postinstall": "patch-package",
"serve": "serve -s build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"packageManager": "[email protected]"
}