-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.45 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
{
"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 . --ext .vue,.js,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@plaoc/is-dweb": "^0.0.9",
"@vitejs/plugin-legacy": "^5.4.2",
"ant-design-vue": "^4.2.3",
"vconsole": "^3.15.1",
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@types/node": "^18.18.5",
"@vitejs/plugin-vue": "^4.4.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.4.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"postcss": "^8.4.41",
"prettier": "^3.0.3",
"sass": "^1.70.0",
"tailwindcss": "^3.4.10",
"typescript": "~5.2.0",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.1",
"vite-plugin-html": "^3.2.2",
"vue-tsc": "^2.0.29"
}
}