-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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": "bootstrap-vue-example",
"type": "module",
"version": "0.0.1",
"private": true,
"description": "Include Bootstrap's source Sass and individual JavaScript plugins with Vue and Vite.",
"license": "MIT",
"engines": {
"node": ">=18.12.0",
"pnpm": ">=8.7.0"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"fix": "npm run lint -- --fix",
"lint": "eslint . --fix",
"preview": "vite preview --port 4173",
"test": "npm run build && npm run lint"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@vitejs/plugin-vue-jsx": "^4.0.1",
"bootstrap": "^5.3.3",
"bootstrap-vue-next": "^0.24.23",
"pinia": "2.2.4",
"vue": "^3.5.11",
"vue-router": "4.4.5"
},
"devDependencies": {
"@soybeanjs/eslint-config": "^1.4.1",
"@types/node": "22.7.4",
"@unocss/eslint-config": "0.63.3",
"@unocss/preset-icons": "0.63.3",
"@unocss/preset-uno": "0.63.3",
"@unocss/transformer-directives": "0.63.3",
"@unocss/transformer-variant-group": "0.63.3",
"@unocss/vite": "0.63.3",
"@vitejs/plugin-vue": "^5.1.4",
"@vueuse/core": "11.1.0",
"eslint": "^9.12.0",
"eslint-plugin-vue": "^9.28.0",
"sass": "^1.79.4",
"sass-loader": "^16.0.2",
"typescript": "^5.6.2",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.8",
"vite-plugin-vue-devtools": "7.4.6",
"vue-loader": "^17.4.2",
"vue-tsc": "2.1.6"
},
"stackblitz": {
"startCommand": "npm start"
}
}