-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.97 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
{
"name": "dynamic_loading_components",
"version": "1.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"serve": "vite",
"build:prod": "vite build",
"build:staging": "vite build --mode staging",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue src",
"lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.vue --fix src",
"---": "",
"init": "yarn install",
"ci": "yarn install --frozen-lockfile",
"clean": "npx rimraf node_modules",
"prepare": "husky"
},
"stackblitz": {
"startCommand": "yarn serve"
},
"dependencies": {
"@tailwindcss/container-queries": "^0.1.1",
"@vueuse/core": "^10.7.1",
"@vueuse/integrations": "^10.11.0",
"axios": "^1.6.4",
"lodash.clonedeep": "^4.5.0",
"pinia": "^2.1.7",
"vue": "^3.4.5",
"vue-i18n": "^9.8.0",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@html-eslint/eslint-plugin": "^0.26.0",
"@html-eslint/parser": "^0.26.0",
"@stylistic/eslint-plugin": "^1.6.3",
"@types/lodash.clonedeep": "^4.5.9",
"@types/node": "^20.11.18",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^13.0.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-vue": "^9.19.2",
"husky": "^9.1.6",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.3",
"typescript": "~5.4.5",
"vite": "^5.1.3",
"vite-plugin-chunk-split": "^0.5.0"
}
}