-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.48 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
{
"name": "esachievement",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "npm run gen:esa-type",
"test": "tsc && prettier --check ./src/ --check && eslint --ext .ts,.tsx ./src ",
"dev": "vite",
"dev:workers": "wrangler pages dev -- bun run dev",
"build": "yarn test && vite build && cpx wrangler.toml dist/ && cpx \"functions/**\" dist/functions",
"preview": "vite preview",
"fmt": "prettier --write ./src/",
"lint": "eslint --ext .ts,.tsx ./src",
"gen:esa-type": "openapi-typescript https://raw.githubusercontent.com/suin/esa-openapi/main/esa-api.json -o ./src/lib/services/esa.gen.ts"
},
"engines": {
"node": "22"
},
"dependencies": {
"@fontsource-variable/noto-sans-jp": "^5.0.19",
"@generouted/react-router": "^1.19.3",
"@hookform/resolvers": "^3.9.0",
"@iconify/react": "^4.1.1",
"@nanostores/persistent": "^0.10.1",
"@nanostores/react": "^0.7.2",
"@radix-ui/themes": "^3.0.5",
"chart.js": "^4.4.3",
"emoji-picker-react": "^4.12.0",
"nanostores": "^0.10.3",
"openapi-fetch": "^0.9.7",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-hook-form": "^7.52.0",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.11",
"swr": "^2.2.5",
"the-new-css-reset": "^1.11.2",
"ts-pattern": "^5.2.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240614.0",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/ui": "^1.5.0",
"cpx": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-unused-imports": "^3.1.0",
"openapi-typescript": "^6.7.6",
"openapi-typescript-helpers": "^0.0.9",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2",
"wrangler": "^3.73.0"
}
}