-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.1 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": "react-forms-lite",
"version": "1.1.5",
"description": "react form library",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"type": "module",
"files": [
"dist/**/*"
],
"keywords": [
"React",
"Formik",
"Lodash",
"Sass",
"Yup",
"clsx"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"author": "Mithyalabs Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mithya-team/react-forms-lite.git"
},
"bugs": {
"url": "https://github.com/mithya-team/react-forms-lite/issues"
},
"homepage": "https://github.com/mithya-team/react-forms-lite#readme",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"dependencies": {
"clsx": "^1.2.1",
"formik": "^2.2.9",
"lodash": "^4.17.21",
"node-sass": "^8.0.0",
"sass": "^1.57.1",
"yup": "^1.0.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^3.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"jest": "^29.4.2",
"lodash": "^4.17.21",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.15.0",
"rollup-plugin-auto-named-exports": "^1.0.0-beta.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.12.17",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}