forked from lsirivong/gatsby-plugin-modal-routing
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "@decantyme/gatsby-plugin-modal-routing",
"version": "2.0.0",
"description": "Gatsby plugin to enable routing of modal pages",
"main": "index.js",
"scripts": {
"prepare": "cross-env NODE_ENV=production npm run build",
"build": "babel src --out-dir ./dist --ignore **/__tests__",
"watch": "babel -w src --out-dir ./dist --ignore **/__tests__",
"format:checkonly": "prettier . -c",
"format": "prettier . -w",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"stylecheck": "yarn format:checkonly && yarn lint",
"stylefix": "yarn format && yarn lint:fix"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"modal",
"routing"
],
"author": "Lenny Sirivong <[email protected]> (https://lenny-s.com)",
"license": "MIT",
"homepage": "https://github.com/lsirivong/gatsby-plugin-modal-routing",
"bugs": "https://github.com/lsirivong/gatsby-plugin-modal-routing/issues",
"repository": {
"url": "https://github.com/lsirivong/gatsby-plugin-modal-routing",
"type": "git"
},
"files": [
"/dist",
"/*.js"
],
"dependencies": {
"@babel/runtime": "^7.17.9",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-modal": "^3.8.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-gatsby-package": "^2.11.0",
"cross-env": "^5.0.5",
"eslint": "^8.13.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0"
}
}