-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.65 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
51
52
53
54
{
"name": "wdc-2023",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite-ssg build",
"build:prod": "run-p type-check build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint",
"lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"lint:stylelint": "stylelint 'src/**/*.{css,scss,sass,vue}' --fix"
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"@vueuse/shared": "^9.13.0",
"lodash-es": "^4.17.21",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"sass": "^1.60.0",
"unplugin-fonts": "^1.0.0",
"unplugin-vue-components": "^0.24.1",
"vite-plugin-md": "^0.21.5",
"vite-plugin-pwa": "^0.14.7",
"vue": "^3.2.47",
"vue-router": "^4.1.6",
"workbox-window": "^6.5.4"
},
"devDependencies": {
"@iconify/vue": "^4.1.1",
"@rushstack/eslint-patch": "^1.2.0",
"@types/lodash-es": "^4.17.7",
"@types/markdown-it-attrs": "^4.1.0",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/tsconfig": "^0.1.3",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"stylelint": "^15.4.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard-scss": "^7.0.1",
"stylelint-scss": "^4.6.0",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vite-ssg": "^0.23.3",
"vue-tsc": "^1.2.0"
}
}