-
Notifications
You must be signed in to change notification settings - Fork 397
/
package.json
89 lines (89 loc) · 2.95 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
{
"name": "waline-root",
"private": true,
"type": "module",
"scripts": {
"admin:build": "pnpm --dir=packages/admin build",
"admin:dev": "pnpm --dir=packages/admin dev",
"api:build": "pnpm --dir=packages/api build",
"apidoc": "apidoc -i packages/server/src/logic -o docs/src/.vuepress/dist/api",
"build": "pnpm admin:build && pnpm api:build && pnpm client:build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"clean": "pnpm -r clean",
"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 --fix .",
"lint:md": "markdownlint-cli2 '**/*.md'",
"lint:prettier": "prettier --check --write .",
"lint:stylelint": "stylelint packages/*/src/**/*.scss --fix",
"packages:check-update": "pnpm dlx npm-check-updates --deep",
"packages:update": "pnpm dlx npm-check-updates --deep -u && pnpm i && pnpm -r up",
"prepare": "husky",
"server:dev": "vercel dev ./example --listen 9090",
"test": "vitest"
},
"nano-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.md": "markdownlint-cli2 --fix",
"*.{js,ts,vue}": "eslint --fix",
"**/package.json": "sort-package-json"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/runtime": "7.26.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@rollup/plugin-replace": "6.0.1",
"@types/node": "22.9.0",
"@vitejs/plugin-react": "4.3.3",
"apidoc": "1.2.0",
"commitizen": "4.3.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.14.0",
"eslint-config-mister-hope": "0.3.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-vue": "9.30.0",
"husky": "9.1.6",
"markdownlint-cli2": "0.14.0",
"nano-staged": "0.8.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.24.4",
"rollup-plugin-dts": "6.1.1",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-ts": "3.4.5",
"sass-embedded": "1.80.6",
"sort-package-json": "2.10.1",
"stylelint": "16.10.0",
"stylelint-config-hope": "7.0.4",
"tslib": "2.8.1",
"typescript": "5.6.3",
"vercel": "37.11.0",
"vite": "5.4.10",
"vite-plugin-css-injected-by-js": "3.5.2",
"vite-plugin-svgr": "4.3.0",
"vitest": "2.1.4"
},
"packageManager": "[email protected]",
"apidoc": {
"title": "Waline API Documentation"
}
}