-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
63 lines (63 loc) · 1.64 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
58
59
60
61
62
63
{
"name": "svgps.app",
"version": "1.54.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"lint": "eslint"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@supabase/supabase-js": "^2.39.6",
"axios": "^1.3.1",
"clsx": "^2.1.0",
"copy-to-clipboard": "^3.3.3",
"dayjs": "^1.11.10",
"jszip": "^3.10.1",
"klona": "^2.0.6",
"lodash.uniqby": "^4.7.0",
"lookie": "^1.0.4",
"nanoid": "^5.0.5",
"next": "^14.1.0",
"react": "^18.2.0",
"react-content-loader": "^6.2.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"react-icomoon": "^2.5.7",
"react-paginate": "^8.2.0",
"react-syntax-highlighter": "^15.5.0",
"slugify": "^1.6.6",
"svgpath": "^2.6.0",
"svgps": "^0.8.0",
"zustand": "^4.5.1"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@types/react-syntax-highlighter": "^15.5.11",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,css}": [
"prettier -w"
]
}
}