-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
95 lines (95 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "dk-plus",
"version": "1.0.1",
"description": "",
"workspaces": [
"packages/*",
"play",
"docs"
],
"engines": {
"node": ">= 16"
},
"scripts": {
"dev:play": "pnpm -C play dev",
"build:play": "pnpm -C play build",
"build": "pnpm build:css && pnpm build:theme && vite build",
"build:css": "vite build --config vite.config.css.ts",
"build:theme": "vite build --config vite.config.theme.ts",
"dev:docs": "pnpm -C docs dev:docs",
"build:docs": "pnpm -C docs build:docs",
"format": "prettier --write \"**/*.{ts,tsx,js,json,css,scss,json,md,vue,yml,yaml}\"",
"deploy:docs": "cross-env NODE_ENV=docs node ./deploy",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"commitlint": "commitlint --config commitlint.config.js -e -V"
},
"keywords": [],
"author": "",
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@commitlint/config-conventional": "17.6.3",
"@commitlint/cli": "17.6.3",
"@algolia/client-search": "^4.17.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.9",
"@vitejs/plugin-vue": "^3.0.1",
"@vitest/coverage-v8": "^0.32.0",
"@vue/compiler-sfc": "^3.2.47",
"@vue/test-utils": "^2.3.2",
"autoprefixer": "^10.4.14",
"babel-preset-env": "^1.7.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"fast-glob": "^3.2.12",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"ora": "^5.1.0",
"postcss": "^8.4.6",
"postcss-preset-env": "^7.8.3",
"prettier": "2.8.7",
"readline": "^1.3.0",
"rollup": ">=2.78.0 <3.0.0 || >=3.0.0 <4.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-vue": "^6.0.0",
"sass": "^1.63.3",
"scp2": "^0.5.0",
"ssh2": "^1.11.0",
"sucrase": "^3.31.0",
"ts-morph": "^18.0.0",
"tslint": "^6.1.3",
"typescript": "latest",
"vite": "^3.1.2",
"vite-plugin-dts": "2.0.0-beta.3",
"vitest": "^0.32.0",
"vue": "^3.2.25"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx,.md}": [
"prettier --write \"**/*.{ts,tsx,js,json,css,scss,json,md,vue,yml,yaml}\"",
"eslint --cache --fix"
]
},
"dependencies": {
"@dk-plus/eslint-config": "workspace:^1.0.0",
"@dk-plus/theme-chalk": "workspace:^1.0.0",
"@dk-plus/vite-plugin-vue-dk-setup-name": "workspace:^0.1.0"
}
}