forked from serverless-cd/ui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.31 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
{
"name": "@serverless-cd/ui",
"version": "0.0.1",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"scripts": {
"start": "npm run dev",
"dev": "dumi dev",
"build": "father build",
"docs:build": "dumi build",
"prepare": "dumi setup"
},
"devDependencies": {
"@alicloud/console-components": "^1.5.10",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.0.3",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@umijs/fabric": "^2.8.1",
"@umijs/lint": "^4.0.0",
"@umijs/test": "^3.0.5",
"dumi": "^2.0.2",
"eslint": "^8.23.0",
"father": "^4.1.0",
"gh-pages": "^3.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"stylelint": "^14.9.1",
"yorkie": "^2.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.6"
}
}