-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "@elevenlabs/react-formbuilder",
"version": "0.2.7",
"description": "Form builder for React, without tears",
"main": "./lib/index.js",
"files": ["lib"],
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && babel ./src --out-dir ./lib",
"start:example:antd": "cd ./examples/antd && yarn start"
},
"keywords": [
"formbuilder",
"form",
"validation",
"forms",
"react",
"react-dom",
"formik"
],
"author": "Fabien PASQUET",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eleven-labs/react-formbuilder.git"
},
"homepage": "https://github.com/eleven-labs/react-formbuilder#readme",
"dependencies": {
"formik": "^1.2.0",
"lodash": "^4.17.10",
"spected": "^0.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"parcel": "^1.12.4",
"react": "^16.4.2"
},
"peerDependencies": {
"react": ">=15"
}
}