-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.36 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": "^2.1.1",
"@next/mdx": "^12.1.6",
"next": "14.1.3",
"react": "^18",
"react-dom": "^18",
"usehooks-ts": "^2.5.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.4",
"@iconify-json/carbon": "^1.1.30",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@unocss/webpack": "^0.58.6",
"@vitejs/plugin-react": "^1.3.2",
"eslint": "^8",
"jsdom": "^19.0.0",
"npm-run-all": "^4.1.5",
"taze": "^0.13.3",
"tsconfig-paths": "^4.0.0",
"typescript": "^5.3.3",
"unocss": "^0.58.5",
"unplugin-auto-import": "0.17.5",
"vite": "^5.1.4",
"vite-tsconfig-paths": "^3.5.0",
"vitest": "^1.3.1"
}
}