-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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": "recursive-sidebar-menu",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "run-p type-check test:unit test:snap build-only",
"preview": "vite preview",
"test:unit": "yarn run vitest --w=false",
"test:snap": "vitest --w=false -u",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"mock-server": "json-server --watch ./mock-server/db.json --port 3009"
},
"dependencies": {
"@vueuse/core": "^9.13.0",
"hamburgers": "^1.2.1",
"lodash-es": "^4.17.21",
"pinia": "^2.0.32",
"vue": "^3.3.4",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@pinia/testing": "^0.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@types/jsdom": "^21.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.2",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"@vue/test-utils": "^2.4.1",
"@vue/tsconfig": "^0.1.3",
"babel-loader": "^8.3.0",
"eslint": "^8.34.0",
"eslint-plugin-vue": "^9.9.0",
"jsdom": "^22.1.0",
"json-server": "^0.17.2",
"npm-run-all": "^4.1.5",
"postcss-scss": "^4.0.6",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"stylelint": "^15.2.0",
"stylelint-config-standard-scss": "^7.0.1",
"typescript": "~4.8.4",
"vite": "^4.1.4",
"vite-plugin-svg-icons": "^2.0.1",
"vitest": "^0.34.2",
"vue-loader": "^16.8.3",
"vue-tsc": "^1.2.0"
}
}