-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.72 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
{
"name": "macos-vue",
"version": "0.0.3",
"scripts": {
"dev": "vite",
"build": "run-p typecheck build-only",
"preview": "vite preview --port 4173",
"test:unit": "vitest --environment jsdom",
"build-only": "vite build",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"author": "JayMeDotDot",
"license": "MIT",
"dependencies": {
"@vueuse/core": "^9.2.0",
"animate.css": "^4.1.1",
"axios": "^0.27.2",
"dayjs": "^1.11.4",
"pinia": "^2.0.20",
"vue": "^3.2.37",
"vue-router": "4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@iconify-json/ant-design": "^1.1.3",
"@iconify-json/ic": "^1.1.7",
"@iconify-json/simple-icons": "^1.1.25",
"@rushstack/eslint-patch": "^1.1.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^16.11.45",
"@unocss/preset-icons": "^0.44.7",
"@vitejs/plugin-vue": "^3.0.1",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.0.2",
"@vue/tsconfig": "^0.1.3",
"chalk": "^4.1.0",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^9.0.0",
"husky": "^8.0.1",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"typescript": "~4.7.4",
"unocss": "^0.44.5",
"vite": "^3.0.4",
"vitest": "^0.18.1",
"vue": "^3.2.37",
"vue-tsc": "^0.38.8"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint . --fix --ignore-path .gitignore",
"*": [
"prettier . --write --ignore-unknown --ignore-path .gitignore"
]
}
}