-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
{
"name": "react-forms",
"version": "1.0.3",
"description": "Creating declarative dynamic forms",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"scripts": {
"build": "rm -rf dist/ && rollup -c",
"test": "jest"
},
"files": [
"dist"
],
"author": "Mithyalabs Team",
"license": "ISC",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"formik": "^2.1.1",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.9.1",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"@types/react-test-renderer": "^16.9.1",
"formik": "^2.1.1",
"jest": "^24.9.0",
"lodash": "^4.17.15",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts-ts": "^3.1.0",
"react-test-renderer": "^16.12.0",
"rollup": "^1.27.14",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"dependencies": {
"clsx": "^1.1.1"
}
}