-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "dweb-app-store",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build_test": "npm run type-check \"build-only_test {@}\" --",
"preview_test": "pnpm run build_test & vite preview --host",
"build-only_test": "vite build --mode development",
"build": "npm run type-check & vite build",
"preview": "pnpm run build & vite preview --host",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.json --composite false",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"@plaoc/is-dweb": "^0.0.9",
"@vitejs/plugin-legacy": "^5.4.2",
"ant-design-vue": "^4.2.5",
"vconsole": "^3.15.1",
"vue": "https://pkg.pr.new/vuejs/vue-vapor/vue@2ed0be8",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"@types/node": "^18.19.58",
"@vitejs/plugin-vue": "^4.6.2",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.13.0",
"eslint-plugin-vue": "^9.29.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"sass": "^1.80.3",
"tailwindcss": "^3.4.14",
"typescript": "~5.2.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.9",
"vite-plugin-html": "^3.2.2",
"vue-tsc": "^2.1.6"
}
}