-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 3.13 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
100
101
102
103
104
105
{
"name": "antd-form-json",
"version": "0.0.4",
"description": "Generate Json data with the controlled form",
"main": "lib/index.es.js",
"module": "lib/index.es.js",
"typings": "lib/es/type/index.d.ts",
"type": "module",
"homepage": "https://sang-sang33.github.io",
"repository": {
"type": "git",
"url": "https://github.com/Sang-Sang33/form-json.git"
},
"files": [
"lib"
],
"keywords": [
"react",
"antd",
"immmer",
"form",
"json",
"controlled"
],
"license": "MIT",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint --fix --ext .ts --ext .tsx src/",
"lint:docs": "eslint --fix --ext .ts --ext .tsx docs/",
"test": "vitest",
"coverage": "vitest run --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "npm run build"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"@vitest/coverage-c8": "^0.29.2",
"antd": "^5.3.0",
"babel-loader": "^8.3.0",
"css-loader": "^5.2.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.11",
"happy-dom": "^8.9.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rollup": "^3.18.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-dts": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"style-loader": "^2.0.0",
"typescript": "^4.9.5",
"vite": "^4.1.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.2"
},
"peerDependencies": {
"antd": ">=4",
"react": ">=17.0.2",
"react-dom": ">=17.0.2"
},
"dependencies": {
"@ant-design/icons": "^5.0.1",
"immer": "^9.0.19",
"lodash-es": "^4.17.21"
}
}