-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 892 Bytes
/
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
{
"name": "nextjs-image-sprite",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:icons": "node --experimental-strip-types ./other/build-icons.ts",
"add:icon": "npx @sly-cli/sly add",
"predev": "npm run build:icons --silent",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@types/node": "22.8.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"autoprefixer": "10.4.20",
"clsx": "2.1.1",
"eslint": "9.13.0",
"eslint-config-next": "15.0.2",
"next": "15.0.2",
"postcss": "8.4.47",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "2.5.4",
"tailwindcss": "3.4.14",
"typescript": "5.6.3"
},
"devDependencies": {
"@sly-cli/sly": "1.14.0",
"glob": "11.0.0",
"node-html-parser": "6.1.13",
"prettier": "3.3.3",
"svgo": "3.3.2"
}
}