forked from JessYan0913/pictode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2 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
{
"name": "vue3-template",
"private": true,
"version": "0.0.1",
"packageManager": "[email protected]",
"scripts": {
"bootstrap": "pnpm i && pnpm build",
"pictode": "pnpm --filter \"pictode\" dev",
"build": "pnpm --filter \"@pictode/*\" build",
"build:pictode": "pnpm --filter \"pictode\" build",
"build:pictode:github": "pnpm --filter \"pictode\" build:github",
"lint": "eslint . --ext .js,.vue,.ts,.tsx",
"lint:fix": "eslint . --fix --ext .js,.vue,.ts,.tsx",
"commit": "git-cz",
"prepare": "husky install"
},
"engines": {
"node": ">=16"
},
"workspaces": [
"@pictode/utils"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"@typescript-eslint/typescript-estree": "^5.48.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.26.3",
"c8": "^7.12.0",
"chalk": "^5.2.0",
"commitizen": "^4.2.6",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"enquirer": "^2.3.6",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.6.0",
"eslint-define-config": "^1.13.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-vue": "^9.16.1",
"execa": "^6.1.0",
"husky": "^7.0.0",
"jsdom": "^21.0.0",
"lint-staged": "^11.0.1",
"minimist": "^1.2.7",
"prettier": "^2.8.2",
"recast": "^0.22.0",
"rimraf": "^3.0.2",
"semver": "^7.3.8",
"shx": "^0.3.4",
"tslib": "^2.6.0",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vitest": "^0.26.3",
"vue": "^3.3.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.scss": "prettier --write"
}
}