-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 915 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 915 Bytes
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
{
"name": "react-zero",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"prebuild": "zero-icons",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"clean": "rm -rf .next"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.20.0",
"@react-zero-ui/core": "^0.4.0",
"@react-zero-ui/icon-sprite": "^0.1.4",
"@vercel/analytics": "^1.5.0",
"clsx": "^2.1.1",
"motion": "12.18.1",
"next": "15.3.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-scan": "^0.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8.5.5",
"tailwindcss": "^4.1.10",
"typescript": "^5"
}
}