-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "ffxiv-gearing",
"version": "0.0.1",
"description": "Final Fantasy XIV Gearing",
"keywords": [
"final-fantasy-xiv",
"ffxiv"
],
"homepage": "https://asvel.github.io/ffxiv-gearing/",
"license": "MIT",
"repository": "https://github.com/Asvel/ffxiv-gearing",
"scripts": {
"start": "rspack serve",
"build": "rspack build --mode=production",
"analyze": "rspack build --mode=production --analyze",
"publish": "node publish.js",
"data-fetch": "node data/fetch.js",
"data-convert": "node data/convert.js",
"lint": "eslint --ext .js,.ts,.tsx ."
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@rmwc/badge": "^8.0.8",
"@rmwc/button": "^8.0.8",
"@rmwc/card": "^8.0.8",
"@rmwc/list": "^8.0.8",
"@rmwc/radio": "^8.0.8",
"@rmwc/ripple": "^8.0.8",
"@rmwc/switch": "^8.0.8",
"@rmwc/tabs": "^8.0.8",
"@rmwc/textfield": "^8.0.8",
"clsx": "^2.1.1",
"mobx": "^6.13.2",
"mobx-react-lite": "^4.0.7",
"mobx-state-tree": "^6.0.1",
"react": "~18.2.0",
"react-clipboard.js": "^2.0.16",
"react-dom": "~18.2.0",
"react-popper": "^2.3.0",
"sanitize.css": "^13.0.0"
},
"devDependencies": {
"@rspack/cli": "^1.0.5",
"@rspack/core": "^1.0.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"confusing-browser-globals": "^1.0.11",
"css-byebye": "^4.0.1",
"css-loader": "^7.1.2",
"cssnano": "^7.0.6",
"eslint": "^8.57.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"json5": "^2.2.1",
"papaparse": "^5.4.1",
"postcss": "^8.4.45",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.0.3",
"sass-embedded": "^1.78.0",
"sass-loader": "^16.0.1",
"shelljs": "^0.8.5",
"simple-functional-loader": "^1.2.1",
"style-loader": "^4.0.0",
"svg-sprite-loader": "^6.0.11",
"tslib": "^1.14.1",
"typescript": "^5.5.2"
},
"//": "↑↑↑ RMWC uses many tslib v1, hoist it ↑↑↑",
"overrides": {
"svg-baker": {
"postcss": "^8"
}
}
}