-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.59 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
{
"name": "aurora-ui",
"version": "1.0.0",
"description": "UI Framework for aurora-org.",
"main": "index.js",
"author": "Edward",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"dev": "docz dev",
"start": "npm run dev",
"build:doc": "rimraf doc-site && docz build",
"preview:doc": "docz serve"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/react": "^17.0.10",
"@types/react-dom": "^17.0.7",
"@umijs/fabric": "^2.6.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"docz": "^2.3.1",
"gatsby-plugin-less": "^5.7.0",
"husky": "^6.0.0",
"less": "^4.1.1",
"lint-staged": "^11.0.0",
"prettier": "^2.3.1",
"prismjs": "^1.23.0",
"raw-loader": "^4.0.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-simple-code-editor": "^0.11.0",
"react-tooltip": "^4.2.21",
"react-use": "^17.2.4",
"rimraf": "^3.0.2",
"styled-components": "^5.3.0",
"typescript": "^4.3.2"
},
"lint-staged": {
"components/**/*.ts?(x)": [
"prettier --write",
"eslint --fix",
"git add"
],
"components/**/*.less": [
"stylelint --syntax less --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"prop-types": "^15.7.2"
}
}