-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) Β· 3.08 KB
/
package.json
File metadata and controls
104 lines (104 loc) Β· 3.08 KB
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
{
"name": "capstone",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"start": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint ./**/*.{ts,tsx} --cache --fix",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/pretendard": "^5.2.5",
"@mui/material": "^7.1.0",
"@observablehq/plot": "^0.6.17",
"@tanstack/react-query": "^5.68.0",
"@tanstack/react-query-devtools": "^5.68.0",
"@turf/turf": "^7.2.0",
"@vis.gl/react-google-maps": "^1.5.2",
"axios": "^1.8.4",
"chart.js": "^4.4.9",
"cookies-next": "^5.1.0",
"d3": "^7.9.0",
"fast-deep-equal": "^3.1.3",
"geojson": "^0.5.0",
"install": "^0.13.0",
"lucide-react": "^0.509.0",
"msw": "^2.7.3",
"npm": "^11.2.0",
"react": "^19.0.0",
"react-calendar": "^5.1.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-router-dom": "^7.3.0",
"react-toastify": "^11.0.5",
"supercluster": "^8.0.1",
"uuid": "^11.1.0",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.8",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.21.0",
"@types/d3": "^7.4.3",
"@types/geojson": "^7946.0.16",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/supercluster": "^7.1.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.8.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.1",
"eslint-import-resolver-typescript": "^4.2.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"postcss": "^8.5.3",
"prettier": "3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"typescript": "~5.7.2",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"main": "index.js",
"repository": "git+https://github.com/GoToSwiss/frontend.git",
"author": "μ νμ <122273080+sins051301@users.noreply.github.com>",
"license": "MIT",
"description": "This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.",
"bugs": {
"url": "https://github.com/GoToSwiss/frontend/issues"
},
"homepage": "https://github.com/GoToSwiss/frontend#readme",
"msw": {
"workerDirectory": [
"public"
]
}
}