-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.92 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
{
"name": "react-form",
"version": "0.3.5",
"description": "A simple react library that manages form values and errors.",
"main": "dist/index.js",
"scripts": {
"test:run": "jest --config jest.config.json",
"test:watch": "jest --watch --config jest.config.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts,.tsx src",
"build": "rm -rf ./dist/* && tsc",
"prepublishOnly": "npm run test:run && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ramilamparo/react-form.git"
},
"keywords": [
"form",
"react",
"react-native"
],
"author": "ramilamparo",
"license": "ISC",
"bugs": {
"url": "https://github.com/ramilamparo/react-form/issues"
},
"homepage": "https://github.com/ramilamparo/react-form#readme",
"dependencies": {
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/lodash.get": "^4.4.6",
"@types/lodash.set": "^4.3.6",
"@types/react": "^16.9.34",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-import-resolver-typescript": "^2.2.1",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.4.0",
"prettier": "^2.1.1",
"ts-jest": "^25.4.0",
"typescript": "~3.9.5"
}
}