forked from walinejs/waline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.81 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
96
{
"name": "waline",
"version": "0.0.2",
"private": true,
"scripts": {
"admin:analyze": "npm --dir=packages/admin analyze",
"admin:build": "pnpm --dir=packages/admin build",
"admin:dev": "pnpm --dir=packages/admin dev",
"apidoc": "apidoc -i packages/server/src/logic -o docs/src/.vuepress/dist/api",
"build": "pnpm admin:build && pnpm client:build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "lerna run clean --stream",
"client:build": "pnpm --dir=packages/client build",
"client:dev": "pnpm --dir=packages/client dev",
"docs:build": "pnpm --dir=docs run build && pnpm apidoc",
"docs:dev": "pnpm --dir=docs run dev",
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint",
"lint:eslint": "eslint --ext .js,.vue,.ts --fix .",
"lint:prettier": "prettier --check --write .",
"lint:stylelint": "stylelint packages/*/src/**/*.scss --fix",
"prepare": "husky install",
"server:dev": "vercel dev ./example --listen 9090",
"test": "vitest"
},
"lint-staged": {
"*.{md,json,yml,js,vue}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "7.19.3",
"@babel/eslint-parser": "7.19.1",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@typescript-eslint/eslint-plugin": "5.38.1",
"@typescript-eslint/parser": "5.38.1",
"@vue/eslint-config-prettier": "7.0.0",
"@vue/eslint-config-typescript": "11.0.2",
"apidoc": "0.53.0",
"c8": "7.12.0",
"commitizen": "4.2.5",
"conventional-changelog-cli": "2.2.2",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-vue": "9.5.1",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss": "8.4.17",
"prettier": "2.7.1",
"sass": "1.55.0",
"sort-package-json": "2.0.0",
"stylelint": "14.13.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "28.0.0",
"stylelint-config-standard-scss": "5.0.0",
"stylelint-order": "5.0.0",
"typescript": "4.8.4",
"vercel": "28.4.5",
"vite": "3.1.4",
"vitest": "0.23.4"
},
"packageManager": "[email protected]",
"apidoc": {
"title": "Waline API Documentation"
},
"pnpm": {
"overrides": {
"@waline/client": "workspace:*"
},
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"@types/react",
"react",
"react-dom",
"ts-node",
"typescript"
]
}
}
}