-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.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
{
"name": "ddangkong",
"version": "0.1.0",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@netlify/plugin-nextjs": "^4.39.4",
"@types/node": "20.4.5",
"@types/react": "18.2.16",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"clsx": "^2.0.0",
"eslint-config-next": "13.4.12",
"file-saver": "^2.0.5",
"framer-motion": "^10.16.4",
"html2canvas": "^1.4.1",
"next": "13.4.12",
"postcss": "8.4.27",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-h5-audio-player": "^3.8.6",
"react-transition-group": "^4.4.5",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/file-saver": "^2.0.5",
"@types/react-transition-group": "^4.4.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "8.45.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"husky": "^8.0.3",
"next-pwa": "^5.6.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.3.0",
"prettier": "^3.0.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}