-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 KB
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
{
"name": "@ttoohey/react-form",
"version": "2.0.0",
"description": "Reduces boilerplate when using a GraphQL API with forms in React.",
"author": "Gency Digital <hello@gency.com.au>",
"license": "ISC",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ttoohey/react-form.git"
},
"homepage": "https://github.com/ttoohey/react-form",
"bugs": "https://github.com/ttoohey/react-form/issues",
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rm -rf dist *.tgz",
"prepare": "npm run clean && npm run build"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"eslint": "^8.10.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.19.1",
"react-use-validator": "^1.0.4"
},
"peerDependencies": {
"@apollo/client": "^3.5.0",
"react": ">= 16.8.0",
"react-use-validator": ">= 1.0.0"
},
"babel": {
"comments": false,
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"minify"
],
"plugins": [
"@babel/proposal-export-default-from"
]
}
}