-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vue-vite-template",
"version": "0.1.0",
"gitHooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn rsc"
},
"scripts": {
"build": "dotenv -e .env vite build",
"start": "dotenv -e .env vite",
"analyze": "vite build --mode analyze",
"lint": "yarn lint:styles && yarn lint:scripts",
"lint:styles": "stylelint \"src/**/*.{vue,sass,scss,css}\"",
"lint:scripts": "eslint \"{src,config}/**/*.{vue,js,ts}\" --cache --fix && tsc --noEmit",
"preview": "vite preview",
"rsc": "node scripts/release-sanity-check.mjs"
},
"dependencies": {
"@distributedlab/tools": "^1.0.0-rc.14",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^10.11.0",
"floating-vue": "^5.2.2",
"lodash": "^4.17.21",
"loglevel": "^1.9.1",
"pinia": "^2.1.7",
"postcss": "^8.4.38",
"uuid": "^10.0.0",
"vue": "^3.4.30",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.0",
"vue-toastification": "^2.0.0-rc.5"
},
"devDependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@rushstack/eslint-patch": "^1.10.3",
"@types/lodash": "^4.17.5",
"@types/node": "^20.14.8",
"@types/uuid": "^10.0.0",
"@types/vuelidate": "^0.7.21",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"chalk": "^5.3.0",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"eslint": "^9.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-vue": "^9.26.0",
"globals": "^15.6.0",
"meow": "^9.0.0",
"optionator": "^0.9.4",
"postcss-html": "^1.7.0",
"prettier": "^3.3.2",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.77.6",
"stylelint": "^16.6.1",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-declaration-strict-value": "^1.10.4",
"stylelint-scss": "^6.3.2",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vite-plugin-checker": "^0.6.4",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-svg-icons": "^2.0.1",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.22",
"yorkie": "^2.0.0"
},
"packageManager": "[email protected]"
}