forked from walinejs/waline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.32 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
97
98
99
100
101
102
103
104
105
106
{
"name": "@waline/client",
"version": "0.0.2",
"private": true,
"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 --ext .js,.jsx,.vue,.ts --fix .",
"lint:md": "markdownlint docs/ --fix",
"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 install",
"server:dev": "vercel dev ./example --listen 9090",
"test": "vitest"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"nano-staged": {
"*.md": [
"markdownlint --fix",
"prettier --write"
],
"*.{js,vue}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml}": [
"prettier --write"
],
"package.json": [
"sort-package-json"
]
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@babel/core": "7.23.2",
"@babel/plugin-transform-runtime": "7.23.2",
"@babel/preset-env": "7.23.2",
"@babel/preset-react": "7.22.15",
"@babel/runtime": "7.23.2",
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-replace": "5.0.5",
"@types/node": "20.8.9",
"@typescript-eslint/eslint-plugin": "6.9.1",
"@typescript-eslint/parser": "6.9.1",
"@vitejs/plugin-react": "4.1.0",
"@vue/eslint-config-prettier": "8.0.0",
"@vue/eslint-config-typescript": "12.0.0",
"apidoc": "1.2.0",
"c8": "8.0.1",
"commitizen": "4.3.0",
"conventional-changelog-cli": "4.1.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.52.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-vue": "9.18.1",
"husky": "8.0.3",
"markdownlint-cli": "0.37.0",
"nano-staged": "0.8.0",
"postcss": "8.4.31",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"rollup": "4.2.0",
"rollup-plugin-dts": "6.1.0",
"rollup-plugin-esbuild": "6.1.0",
"rollup-plugin-ts": "3.4.5",
"sass": "1.69.5",
"sort-package-json": "2.6.0",
"stylelint": "15.11.0",
"stylelint-config-hope": "4.1.0",
"tslib": "2.6.2",
"typescript": "5.2.2",
"vercel": "32.5.0",
"vite": "4.5.0",
"vite-plugin-reiconify": "1.1.2",
"vitest": "0.34.6"
},
"packageManager": "[email protected]",
"apidoc": {
"title": "Waline API Documentation"
}
}