-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.83 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-dynamic-form-maker",
"version": "1.0.2",
"description": "dynamic-form for react",
"main": "index.min.js",
"module": "es/index.esm.js",
"typings": "index.d.ts",
"directories": {
"example": "example",
"test": "test"
},
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js & npm run build:es & npm run build:types",
"build:es": "rollup -c rollup.config.js -f 'es' -o 'dist/es/index.esm.js'",
"build:types": "tsc --noEmit false --declaration --emitDeclarationOnly --outfile dist/index.d.ts",
"eslint:fix": "eslint --color --fix ./src",
"format": "prettier --write ./src",
"release": "standard-version",
"test": "jest --config jest.config.json ",
"gc": "git-cz",
"docs:start": "dumi dev",
"docs:build": "dumi build"
},
"keywords": [
"react",
"form"
],
"homepage": "https://art-design-ui.github.io/dynamic-form/",
"bugs": {
"url": "https://github.com/art-design-ui/dynamic-form/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/art-design-ui/dynamic-form"
},
"author": "vnues",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.13.17"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.7",
"@types/react": "^17.0.6",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"antd": "^4.16.0",
"babel-jest": "^26.6.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"dumi": "^1.1.18",
"dumi-theme-default": "^1.0.16",
"eslint": "^7.27.0",
"eslint-config-alloy": "^4.1.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-react": "^7.23.2",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.3.0",
"react": "^17.0.2",
"rollup": "^2.49.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.3.0",
"typescript": "^4.2.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.ts?(x)": [
"prettier --write",
"eslint --fix"
]
}
}