-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "fukui-kanko-visualization",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "pnpx serve@latest out",
"lint": "next lint",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write --ignore-unknown",
"next lint --fix"
],
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@primer/octicons-react": "^19.14.0",
"@types/papaparse": "^5.3.15",
"apexcharts": "4.3.0",
"next": "^15.1.4",
"papaparse": "^5.5.1",
"react": "19.0.0-rc-02c0e824-20241028",
"react-apexcharts": "^1.7.0",
"react-dom": "19.0.0-rc-02c0e824-20241028"
},
"devDependencies": {
"@types/node": "^20.17.13",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "15.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.5.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]+sha512.73a29afa36a0d092ece5271de5177ecbf8318d454ecd701343131b8ebc0c1a91c487da46ab77c8e596d6acf1461e3594ced4becedf8921b074fbd8653ed7051c",
"pnpm": {
"overrides": {
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"nanoid@<3.3.8": ">=3.3.8",
"next@>=15.0.0 <15.1.2": ">=15.1.2"
}
}
}