-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 2.43 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
{
"name": "react-cnode",
"description": "Frontend Powered By React For CNode.js",
"version": "development",
"private": false,
"license": "MIT",
"scripts": {
"dev": "umi dev",
"build": "umi build",
"build:zip": "node ./scripts/zip.js",
"ci": "npm run test",
"postinstall": "umi generate tmp",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"semantic-release": "semantic-release"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"ci": {
"type": "github",
"os": {
"github": "linux"
},
"version": "16.x"
},
"release": {
"branche": "master",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "History.md"
}
],
[
"@semantic-release/github",
{
"assets": {
"path": "dist.zip",
"label": "Assets Distribution"
},
"addReleases": "bottom"
}
]
]
},
"dependencies": {
"dotenv": "^10.0.0",
"react": "17.x",
"react-dom": "17.x",
"rehype-attr": "^2.0.7",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rehype-stringify": "^9.0.2",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-rehype": "^10.1.0",
"unified": "^10.1.1"
},
"devDependencies": {
"@ant-design/icons": "^4.7.0",
"@ant-design/pro-card": "^1.18.20",
"@ant-design/pro-layout": "^6.32.1",
"@semantic-release/changelog": "^6.0.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/markdown-it": "^12.2.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@umijs/plugin-esbuild": "^1.4.1",
"@umijs/plugin-qiankun": "^2.35.4",
"@umijs/preset-react": "1.x",
"@umijs/test": "^3.5.20",
"ahooks": "^3.1.3",
"compressing": "^1.5.1",
"dayjs": "^1.10.7",
"egg-ci": "^1.19.0",
"lint-staged": "^10.0.7",
"prettier": "^2.2.0",
"react-markdown-editor-lite": "^1.3.2",
"semantic-release": "^18.0.1",
"typescript": "^4.1.2",
"umi": "^3.5.20",
"yorkie": "^2.0.0"
}
}