-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 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
{
"name": "react-chloroform",
"version": "0.2.8",
"description": "A framework for building forms in React applications",
"repository": {
"type": "git",
"url": "git+https://github.com/darrikonn/react-chloroform.git"
},
"keywords": [
"form",
"form-validation",
"react",
"react-chloroform",
"reactjs"
],
"main": "dist/index.js",
"module": "dist/index.js",
"author": "Darri Steinn Konradsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/darrikonn/react-chloroform/issues"
},
"homepage": "https://github.com/darrikonn/react-chloroform#readme",
"scripts": {
"build": "tsc",
"build:watch": "tsc-watch",
"test": "jest",
"test:watch": "yarn test -- --watch",
"clean": "rm -rf dist",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "eslint src --ext ts,tsx --fix",
"tsc": "tsc --noEmit",
"format": "prettier --config .prettierrc --write \"src/**/*.ts*\"",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"prepublish": "tsc"
},
"types": "./dist/index.d.ts",
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-redux": "^7.1.3",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.0.0",
"@testing-library/jest-dom": "^5.1.1",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.0",
"@types/react": "^16.9.19",
"@types/react-redux": "^7.1.7",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"cypress": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^25.1.0",
"prettier": "^1.7.4",
"ts-jest": "^25.2.0",
"tsc-watch": "^4.1.0",
"typescript": "^3.7.5"
}
}