-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.36 KB
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
{
"name": "@code4bones/react-cascade-forms",
"version": "1.0.4",
"main": "build/index.js",
"module": "build/index.esm.js",
"files": [
"build"
],
"types": "build/index.d.ts",
"description": "React state-driven controls renderer",
"scripts": {
"build": "rollup -c",
"storybook": "start-storybook -p 6006",
"storybook:export": "build-storybook",
"prepublishOnly": "npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code4bones/react-cascade-forms.git"
},
"keywords": [
"Forms",
"State",
"Controls",
"React",
"Typescript",
"Less",
"Storybook"
],
"author": "code4bones",
"license": "MIT",
"bugs": {
"url": "https://github.com/code4bones/react-cascade-forms/issues"
},
"homepage": "https://github.com/code4bones/react-cascade-forms/wiki",
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@blueprintjs/core": "^4.13.0",
"@blueprintjs/select": "^4.8.12",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-image": "^3.0.1",
"@rollup/plugin-node-resolve": "^11.2.1",
"@storybook/addon-controls": "^6.5.13",
"@storybook/addon-essentials": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.13",
"@storybook/manager-webpack5": "^6.5.13",
"@storybook/react": "^6.5.13",
"@types/node": "^16.18.2",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"babel-loader": "^8.2.2",
"babel-preset-react-app": "^10.0.0",
"css-loader": "^6.7.1",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"identity-obj-proxy": "^3.0.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.6.0",
"rollup": "^2.56.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-less": "^1.1.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.29.0",
"storybook-dark-mode": "^1.1.2",
"style-loader": "^3.3.1",
"typescript": "^4.4.2",
"webpack": "^5.74.0"
},
"dependencies": {
"fastest-validator": "^1.16.0"
}
}