-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
61 lines (61 loc) · 1.71 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
{
"name": "vue3-template",
"private": true,
"version": "1.0.3",
"packageManager": "pnpm@7.13.6",
"scripts": {
"bootstrap": "pnpm i && pnpm build",
"pictode": "pnpm --filter \"pictode\" dev",
"build": "pnpm --filter \"@pictode/*\" build",
"build:pictode": "pnpm --filter \"pictode\" build",
"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": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/node": "^18.19.49",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/typescript-estree": "^5.62.0",
"@vitest/coverage-c8": "^0.26.3",
"c8": "^7.14.0",
"commitizen": "^4.3.0",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^1.24.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.28.0",
"husky": "^7.0.4",
"jsdom": "^21.1.2",
"lint-staged": "^11.2.6",
"prettier": "^3.3.3",
"rimraf": "^3.0.2",
"semver": "^7.6.3",
"tslib": "^2.7.0",
"typescript": "^4.9.5",
"vite": "^4.5.3",
"vitest": "^0.34.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.scss": "prettier --write"
}
}