-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 979 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
{
"type": "module",
"private": true,
"scripts": {
"dev": "rm -rf public/dist && concurrently \"npm run assets:unocss -- --watch\" \"vite\"",
"build": "npm run assets:unocss && vite build",
"assets:unocss": "unocss \"site/{snippets,templates}/**/*\" --out-file src/styles/uno.css",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier \"src/**/*\" --write"
},
"dependencies": {
"@unocss/reset": "^0.58.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.8.1",
"@iconify-json/carbon": "^1.1.31",
"@types/node": "^20.11.27",
"@unocss/cli": "^0.58.5",
"@unocss/eslint-plugin": "^0.58.5",
"@unocss/preset-mini": "^0.58.5",
"@unocss/preset-wind": "^0.58.5",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"unocss": "^0.58.5",
"vite": "^5.1.6",
"vite-plugin-full-reload": "^1.1.0"
}
}