-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "habits",
"type": "module",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview",
"lint-js": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"lint-css": "stylelint src",
"lint": "npm run lint-js && npm run lint-css",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"dependencies": {
"pinia": "^2.0.13",
"vue": "^3.4.35",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@pinia/testing": "^0.1.5",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/test-utils": "^2.4.6",
"c8": "^7.11.0",
"cross-fetch": "^3.1.5",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^24.1.1",
"msw": "^0.44.2",
"postcss": "^8.4.12",
"postcss-html": "^1.3.0",
"postcss-syntax": "^0.36.2",
"pug": "^3.0.2",
"stylelint": "^14.6.1",
"stylelint-config-sugarss-recommended": "^3.0.0",
"sugarss": "^4.0.1",
"vite": "^5.4.0",
"vitest": "^0.18.0"
}
}