-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
121 lines (121 loc) · 3.53 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
{
"name": "recalc-ts",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18"
},
"dependencies": {
"@creativebulma/bulma-divider": "1.1.0",
"@creativebulma/bulma-tooltip": "1.2.0",
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
"@tanstack/react-query": "5.49.2",
"@testing-library/react": "15.0.7",
"@testing-library/user-event": "14.5.1",
"@tippyjs/react": "4.2.6",
"@types/node": "20.8.3",
"@types/react": "18.3.2",
"@types/react-dom": "18.3.1",
"@vercel/analytics": "1.4.1",
"@vercel/speed-insights": "1.1.0",
"adze": "1.9.1",
"bulma": "0.9.4",
"chart.js": "3.8.0",
"chartjs-plugin-zoom": "1.2.1",
"crypto-js": "4.2.0",
"fast-cartesian": "8.0.0",
"js-quantities": "1.8.0",
"katex": "0.16.15",
"lodash": "4.17.21",
"lz-string": "1.5.0",
"marked": "12.0.2",
"odex": "3.0.0-rc.4",
"query-string": "8.1.0",
"react": "18.3.1",
"react-chartjs-2": "4.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-router-dom": "6.16.0",
"react-table": "7.8.0",
"react-use-promise": "0.5.0",
"serialize-query-params": "2.0.2",
"tinycolor2": "1.6.0",
"tippy.js": "6.3.7",
"ts-toolbelt": "9.6.0",
"typescript": "5.7.2",
"use-query-params": "2.2.1",
"vitest": "2.1.8",
"web-vitals": "3.5.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": ". ./.env && vitest",
"--------------------------------": "------------------------",
"dev:analyze": "source-map-explorer 'build/static/js/*.js' --html coverage/src_map_explorer.html",
"dev:coverage": "yarn test --coverage",
"dev:format": "npx prettier . --write && npx eslint src/ --fix",
"dev:encrypt": "npx ts-node -O '{\"module\":\"commonjs\"}' scripts/encrypt.ts",
"dev:logs": "npx ts-node -O '{\"module\":\"commonjs\"}' scripts/decodeLogs.ts",
"dev:webp": "node scripts/webp.mjs",
"prepare": "husky"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@jedmao/location": "3.0.0",
"@playwright/test": "1.49.1",
"@types/crypto-js": "4.2.2",
"@types/google-spreadsheet": "3.2.2",
"@types/js-quantities": "1.6.6",
"@types/katex": "0.16.3",
"@types/lodash": "4.17.4",
"@types/lz-string": "1.5.0",
"@types/marked": "6.0.0",
"@types/react-helmet": "6.1.11",
"@types/react-router-dom": "5.3.3",
"@types/react-table": "7.7.20",
"@types/tinycolor2": "1.4.6",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "8.18.1",
"@vitejs/plugin-react": "4.3.4",
"eslint": "8.51.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.34.1",
"husky": "9.1.7",
"imagemin": "9.0.0",
"imagemin-webp": "8.0.0",
"jsdom": "25.0.1",
"lint-staged": "15.2.2",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"sass": "1.77.2",
"source-map-explorer": "2.5.3",
"type-fest": "4.18.2",
"vite": "6.0.3",
"vite-plugin-svgr": "4.3.0",
"vite-plugin-top-level-await": "1.4.4",
"vite-tsconfig-paths": "5.1.4"
}
}