-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1006 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
39
40
{
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "vitepress dev",
"build": "vitepress build",
"preview": "vitepress preview",
"level:cache": "tsx ./cli/refresh-levels.ts",
"level:refresh": "tsx ./cli/refresh-levels.ts --reload-all"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.3",
"@types/node": "^20.11.5",
"@vueuse/core": "^10.7.2",
"autoprefixer": "^10.4.17",
"daisyui": "^4.6.0",
"eslint": "^8.56.0",
"fast-glob": "^3.3.2",
"markdown-it-mathjax3": "^4.3.2",
"medium-zoom": "^1.1.0",
"ofetch": "^1.3.3",
"pathe": "^1.1.2",
"postcss": "^8.4.33",
"tailwindcss": "^3.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-fonts": "^1.1.1",
"vite": "^5.0.12",
"vitepress": "1.0.0-rc.39",
"vue": "^3.4.15"
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}