-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
43 lines (43 loc) · 1.17 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
{
"name": "gatsby-plugin-modal-routing",
"version": "1.2.0",
"description": "Gatsby plugin to enable routing of modal pages",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"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": [
"/*.js",
"/lib"
],
"dependencies": {
"@babel/runtime": "^7.0.0",
"lodash": "^4.17.11",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-modal": "^3.8.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-plugin-lodash": "^3.3.4",
"babel-preset-gatsby-package": "^0.1.3",
"cross-env": "^5.0.5"
}
}