-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.19 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
{
"name": "Taiwan fish fish(FE)",
"author": "duidae",
"version": "1.0.0",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier . --write",
"prepare": "husky install"
},
"dependencies": {
"@blocknote/core": "^0.12.0",
"@blocknote/react": "^0.12.0",
"@google/model-viewer": "^3.5.0",
"@types/p5": "^1.7.6",
"axios": "^1.6.7",
"framer-motion": "^11.0.6",
"leaflet": "^1.9.4",
"next": "14.2.4",
"p5": "^1.9.0",
"react": "^18",
"react-dom": "^18",
"react-leaflet": "^4.2.1",
"styled-components": "^6.1.8",
"swiper": "^11.1.4"
},
"devDependencies": {
"@types/leaflet": "^1.9.8",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"postcss": "^8",
"prettier": "3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --cache --fix",
"*.--write": "prettier --write"
}
}