-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.45 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": "@ayayalar/forma",
"version": "1.1.2",
"description": "React Form & Form Validation framework.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && npm i && webpack",
"lint": "eslint src --color --ext .ts,tsx"
},
"repository": {
"type": "git",
"url": "https://github.com/ayayalar/forma.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"react",
"react form"
],
"author": "Arif Yayalar, [email protected]",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.176",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-redux": "^7.1.20",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"copy-webpack-plugin": "^9.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"lodash": "^4.17.21",
"prettier": "^2.4.1",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"lodash": "^4.17.15",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"typescript": "^4.4.4"
},
"files": [
"lib/**/*"
]
}