-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "project-mech",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install | chmod ug+x .husky/*"
},
"dependencies": {
"@react-hook/mouse-position": "^4.1.3",
"clsx": "^2.1.0",
"framer-motion": "8.1.7",
"howler": "^2.2.4",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"react-howler": "^5.2.0",
"react-parallax": "^3.5.1",
"react-unity-webgl": "^9.5.1",
"react-wavesurfer": "^0.8.6",
"tailwind-merge": "^2.2.1",
"wavesurfer.js": "^7.7.5",
"web-audio-analyser": "^2.0.1",
"zustand": "^4.5.2"
},
"lint-staged": {
"*.{js, jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,js,ts,jsx,tsx,html}": [
"prettier --write --ignore-unknown"
]
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/howler": "^2.2.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^8.0.0",
"lint-staged": "^15.2.2",
"postcss": "^8",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwindcss": "^3.3.0",
"typescript": "^5"
}
}