-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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": "tricker-vite",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview --host",
"lint": "npm-run-all lint:*",
"test:unit": "vitest --environment jsdom --root src/",
"lint:js": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"lint:style": "stylelint 'src/**/*.{vue,scss}'"
},
"dependencies": {
"bulma": "^0.9.3",
"pinia": "^2.0.23",
"sass": "^1.47.0",
"vite-svg-loader": "^3.1.2",
"vue": "^3.2.41",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@iconify/vue": "^3.1.2",
"@vitejs/plugin-vue": "^3.1.2",
"@vue/test-utils": "^2.1.0",
"eslint": "^8.26.0",
"eslint-plugin-vue": "^9.3.0",
"jsdom": "^20.0.1",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^21.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.19.0",
"vite": "^3.1.8",
"vitest": "^0.24.3"
},
"pre-commit": [
"lint"
]
}