-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"build": "run-s build:*",
"dev:css": "npm run generate:css -- --watch",
"build:css": "npm run generate:css",
"dev:next": "next dev",
"build:next": "next build",
"generate:css": "unocss \"./**/*.tsx\" -c unocss.config.ts -o ./styles/uno.css",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"up": "taze major -I",
"clean": "pnpx rimraf node_modules .next"
},
"dependencies": {
"@mdx-js/loader": "^3.1.0",
"@next/mdx": "^15.1.4",
"next": "15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@iconify-json/carbon": "^1.2.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.10.5",
"@types/react": "^19.0.4",
"@types/react-dom": "^19.0.2",
"@unocss/webpack": "^0.65.4",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.17.0",
"jsdom": "^26.0.0",
"npm-run-all": "^4.1.5",
"taze": "^18.1.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3",
"unocss": "^0.65.4",
"unplugin-auto-import": "19.0.0",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
}
}