-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
64 lines (64 loc) · 1.94 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
{
"name": "gatsby-gravityforms-component",
"version": "3.1.0",
"description": "A component to take gatsby-source-gravityforms query data and return a usable form.",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir ./dist --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir ./dist --ignore **/__tests__",
"pretest": "eslint --ignore-path .gitignore . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robmarshall/gatsby-gravityforms-component.git"
},
"keywords": [
"gravity",
"forms",
"gravityforms",
"WordPress",
"form",
"Gatsby"
],
"author": "Robert Marshall (https://robertmarshall.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/robmarshall/gatsby-gravityforms-component/issues"
},
"homepage": "https://github.com/robmarshall/gatsby-gravityforms-component#readme",
"dependencies": {
"axios": "^0.21.0",
"classnames": "^2.2.6",
"dotenv": "^8.0.0",
"lodash": "^4.17.20",
"nanoid": "^3.1.20",
"oauth-signature": "^1.5.0",
"prop-types": "^15.7.2",
"react-google-recaptcha": "^2.1.0",
"react-hook-form": "^6.12.0",
"react-html-parser": "^2.0.2",
"sanitize-html": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"babel-eslint": "^10.1.0",
"babel-preset-gatsby-package": "^0.8.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-order-alphabetical": "^1.0.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"gatsby-plugin-eslint": "^2.0.5",
"install-peers": "^1.0.3"
},
"peerDependencies": {
"gatsby": "^2.28.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}