-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.54 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
{
"name": "@daphnis/d-form",
"version": "1.3.0",
"description": "",
"main": "dist/index.umd.js",
"sideEffects": [
"./src/**"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "dumi dev",
"docs:build": "dumi build",
"build": "rm -rf dist && tsc -p ./tsconfig.build.json && rollup --config",
"changelog": "rm -rf CHANGELOG.md && conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "eslint -c ./.eslintrc --ext .jsx,.js,.ts,.tsx src",
"lint-fix": "eslint -c ./.eslintrc --ext .jsx,.js,.ts,.tsx src --fix",
"commit-lint": "commitlint --from origin/master --to HEAD",
"release": "./scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaphnisLi/D-Form.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DaphnisLi/D-Form/issues"
},
"homepage": "https://github.com/DaphnisLi/D-Form#readme",
"files": [
"package.json",
"README.md",
"dist"
],
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nicecode/changelog": "^0.2.0",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"antd": "^5.1.6",
"chalk": "^4.1.2",
"conventional-changelog-cli": "^2.2.2",
"dumi": "^1.1.48",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^8.0.1",
"inquirer": "^7.3.3",
"react": "^16.14.0",
"rollup": "^2.79.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"semver": "^7.3.8",
"shelljs": "^0.8.5",
"standard": "^17.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"async-validator": "^4.2.5",
"immer": "^9.0.21",
"lodash-es": "^4.17.21",
"nanoid": "^4.0.0",
"recoil": "^0.7.6"
},
"peerDependencies": {
"antd": ">=5",
"react": ">=16.9.0"
},
"typings": "dist/index.d.ts",
"module": "dist/index.js",
"engines": {
"node": "14.17.3"
}
}