-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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
{
"name": "prophet",
"version": "1.0.0",
"homepage": "https://github.com/stbui/prophet",
"bugs": "https://github.com/stbui/prophet/issues",
"private": true,
"scripts": {
"build": "lerna run build",
"release": "yarn run build && lerna publish --exact --conventional-commits",
"release:lerna": "lerna publish --exact --conventional-commits",
"demo": "cd examples/demo && yarn run start",
"start": "cd examples/starter && yarn run start",
"docs": "dumi dev",
"docs:build": "dumi build",
"docs:github": "yarn docs:build && gh-pages -d dist",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,json,ts,tsx}\""
},
"author": "stbui",
"license": "ISC",
"description": "用于构建中后台前端应用框架",
"workspaces": [
"packages/*",
"examples/*"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
]
},
"devDependencies": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/history": "^5.0.0",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"gh-pages": "^6.1.0",
"dumi": "^2.2.14",
"lerna": "^7.4.2",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"lint-staged": "^15.1.0",
"rimraf": "^5.0.5"
}
}