forked from ThomasJClark/elden-ring-weapon-calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "eldenarcalc",
"version": "0.1.0",
"private": true,
"license": "MIT",
"author": {
"name": "Tom Clark",
"email": "[email protected]"
},
"dependencies": {
"@emotion/react": "11.10.6",
"@emotion/styled": "11.10.6",
"@mui/icons-material": "5.11.16",
"@mui/material": "5.12.2",
"@mui/system": "5.12.1",
"@radix-ui/react-scroll-area": "^1.0.5",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@vitejs/plugin-react-swc": "^3.0.0",
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"eslint": "^8.36.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fast-xml-parser": "^4.2.7",
"prettier": "2.7.1",
"ts-node": "10.8.1",
"typescript": "5.0.4",
"vite": "^4.2.0",
"vite-plugin-eslint": "^1.8.1"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"buildData": "ts-node-esm src/buildData.ts",
"buildData:v1.10": "ts-node-esm src/buildData.ts vanilla public/regulation-vanilla-v1.09.js",
"buildData:reforged": "ts-node-esm src/buildData.ts reforged public/regulation-reforged-v0.12.7.js",
"buildData:convergence": "ts-node-esm src/buildData.ts convergence public/regulation-convergence-v1.4.2.js",
"rebuildWeaponData": "yarn buildData:v1.10 && yarn buildData:reforged && yarn buildData:convergence"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:react/jsx-runtime",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
},
"settings": {
"react": {
"version": "detect"
}
},
"root": true
},
"prettier": {
"printWidth": 100,
"trailingComma": "all"
}
}