-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.59 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
{
"name": "@enterwell/react-form-builder",
"version": "0.3.2",
"description": "Form builder functionality for React",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/Enterwell/react-form-builder",
"private": false,
"sideEffects": false,
"author": {
"name": "Enterwell",
"email": "[email protected]",
"url": "https://enterwell.net"
},
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"dev": "npm run clean && rollup -c -w",
"build": "concurrently \"npm run build:lib\" \"npm run build:types\"",
"build:lib": "rollup -c",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.build.json",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"stories-check": "rimraf ./.stories-pending && storycap --serverCmd \"storybook dev --ci -p 6007\" --serverTimeout 180000 -o .stories-pending http://localhost:6007 && kill-port 6007 && node -e \"require('./helpers/ci/StoriesCompare').run()\""
},
"engines": {
"node": ">=16"
},
"files": [
"/lib"
],
"keywords": [
"react",
"hooks",
"form",
"builder"
],
"peerDependencies": {
"@enterwell/react-form-validation": "^1",
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"devDependencies": {
"@babel/core": "7.21.4",
"@babel/plugin-proposal-decorators": "7.21.0",
"@babel/plugin-proposal-export-default-from": "7.18.10",
"@babel/preset-env": "7.21.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.4",
"@enterwell/react-form-validation": "1.2.8",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-node-resolve": "15.0.2",
"@storybook/addon-actions": "7.0.5",
"@storybook/addon-essentials": "7.0.5",
"@storybook/addon-interactions": "7.0.5",
"@storybook/addon-links": "7.0.5",
"@storybook/react": "7.0.5",
"@storybook/react-webpack5": "7.0.5",
"@storybook/testing-library": "0.1.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"babel-loader": "9.1.2",
"concurrently": "8.0.1",
"cross-env": "7.0.3",
"esbuild": "0.17.17",
"fs-extra": "11.1.1",
"kill-port": "2.0.1",
"postcss": "8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.0",
"rollup": "3.20.4",
"rollup-plugin-esbuild": "5.0.0",
"rollup-plugin-peer-deps-external": "2.2.4",
"rollup-plugin-summary": "2.0.0",
"rollup-plugin-typescript2": "0.34.1",
"storybook": "7.0.5",
"storycap": "4.0.0",
"typescript": "5.0.4",
"webpack": "5.79.0"
}
}