-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.9 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
{
"name": "@cosva-lab/form-builder",
"version": "3.1.0",
"description": "React form builder.",
"author": "andres112013",
"license": "MIT",
"homepage": "https://cosva-lab.github.io/form-builder",
"repository": "https://github.com/cosva-lab/form-builder.git",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/es/index.js",
"esnext": "dist/esm/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"scripts": {
"clean": "rm -Rf ./lib/* ./dist/*",
"rollup": "rollup -c",
"prebuild": "npm run clean",
"build": "npm run rollup",
"postbuild": "npm run build:copy-files",
"build:copy-files": "node ./scripts/copy-files.js",
"start": "npx tsc -w --outDir ./example/src/@cosva-lab/form-builder",
"release": "npm run build && npm publish dist/",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build",
"test": "ts-mocha --require ignore-styles -r global-jsdom/register \"./src/{,/**/}*.spec.ts\""
},
"peerDependencies": {
"@mui/material": "^5.0.0",
"clsx": "^1.0.0 || ^2.0.0",
"mobx": "^6.0.0",
"mobx-react": "^7.0.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-is": "^16.0.0 || ^17.0.0 || ^18.0.0",
"validator": "^11.0.0 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.15",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react-hooks": "^8.0.1",
"@types/chai": "^4.3.9",
"@types/chai-as-promised": "^7.1.7",
"@types/jest": "^23.3.14",
"@types/lodash": "^4.14.200",
"@types/mocha": "^10.0.3",
"@types/react": "^17.0.69",
"@types/react-dom": "^17.0.22",
"@types/react-is": "^17.0.6",
"@types/sinon": "^10.0.20",
"@types/validator": "^10.11.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"clsx": "^1.2.1",
"cross-env": "^5.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"gh-pages": "^1.2.0",
"global-jsdom": "^9.1.0",
"ignore-styles": "^5.0.1",
"jsdom": "^22.1.0",
"mobx": "^6.10.2",
"mobx-react": "^7.6.0",
"mocha": "^10.2.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^3.29.4",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"sinon": "^15.2.0",
"ts-mocha": "^10.0.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"validator": "^13.11.0"
},
"publishConfig": {
"access": "public"
}
}