-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
94 lines (94 loc) · 2.38 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
{
"name": "rc-gantt",
"version": "0.3.1",
"homepage": "https://ahwgs.github.io/react-gantt/#/",
"repository": {
"type": "git",
"url": "git+https://github.com/ahwgs/react-gantt.git"
},
"license": "MIT",
"author": "ahwgs <[email protected]>",
"module": "dist/index.esm.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "cross-env NODE_ENV=production avenger build",
"build:website": "dumi build",
"release": "bumpp package.json --commit --push --tag",
"start": "cross-env NODE_ENV=development avenger build --watch",
"start:website": "dumi dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,md,tsx,ts}": [
"prettier --write",
"git add"
],
"*.ts?(x)": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"@babel/runtime": "^7.14.8",
"ahooks": "^2.9.2",
"classnames": "^2.2.6",
"dayjs": "^1.9.7",
"lodash": "^4.17.20",
"lodash-es": "^4.17.21",
"mobx": "4.7.0",
"mobx-react-lite": "1.5.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-typescript": "^7.14.6",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@osdoc-dev/avenger-cli": "^0.2.0",
"@osdoc-dev/eslint-config-preset-prettier": "1.0.5-beta.0",
"@osdoc-dev/eslint-config-preset-react": "1.0.5-beta.0",
"@types/classnames": "^2.2.11",
"@types/lodash": "^4.14.165",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"babel-loader": "^8.2.2",
"bumpp": "^7.1.1",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"cz-customizable": "^6.3.0",
"dumi": "^1.1.23",
"husky": "^4.3.6",
"identity-obj-proxy": "^3.0.0",
"less": "^3.12.2",
"less-loader": "^7.1.0",
"lint-staged": "^11.0.0",
"postcss": "^8.1.14",
"postcss-url": "^10.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"rollup-plugin-postcss": "^4.0.0",
"tslib": "^2.0.3",
"typescript": "4.6.4"
},
"peerDependencies": {
"react": ">=16"
},
"engines": {
"node": ">=10"
}
}