-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
{
"name": "@json-tsc/monorepo",
"version": "1.0.5",
"private": true,
"packageManager": "pnpm@7.13.4",
"license": "MIT",
"scripts": {
"dev": "pnpm run stub",
"docs": "pnpm -C docs run dev",
"docs:build": "pnpm -C docs run build",
"stub": "pnpm -r --parallel -F \"./packages/{utils,site}\" run dev",
"build": "rimraf packages/*/{dist} && pnpm -r -F \"./packages/{utils,site}\" run build",
"play": "pnpm -C 'packages/site' dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp package.json packages/**/package.json",
"deploy": "pnpm run build",
"test": "vitest",
"test:ci": "pnpm install && pnpm run lint && pnpm run build && pnpm run test",
"test:update": "vitest -u",
"test:coverage": "vitest --coverage",
"volar:helper": "esno scripts/volar-helper"
},
"devDependencies": {
"@evan-yang/eslint-config": "^1.0.1",
"@iconify-json/carbon": "^1.1.9",
"@iconify-json/fluent-emoji": "^1.1.3",
"@iconify-json/logos": "^1.1.17",
"@intlify/vite-plugin-vue-i18n": "^6.0.3",
"@types/node": "18.8.0",
"@types/prettier": "^2.7.1",
"@unocss/reset": "^0.27.6",
"@vitejs/plugin-vue": "^3.1.2",
"@vitest/coverage-c8": "^0.24.3",
"@vitest/ui": "0.24.3",
"@vue/test-utils": "^2.2.0",
"@vueuse/core": "^9.4.0",
"bumpp": "^8.2.1",
"element-plus": "^2.2.19",
"eslint": "^8.26.0",
"eslint-plugin-import": "^2.26.0",
"jsdom": "^19.0.0",
"json-tsc": "workspace:*",
"lint-staged": "^12.5.0",
"pnpm": "^7.14.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.8.1",
"tsup": "^6.3.0",
"typescript": "^4.8.4",
"unocss": "^0.27.6",
"unplugin-auto-import": "^0.11.4",
"unplugin-vue-components": "^0.22.9",
"vite": "^3.1.8",
"vitepress": "1.0.0-alpha.22",
"vitest": "^0.24.3",
"vue": "3.2.39",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint . --fix"
]
}
}