-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 902 Bytes
/
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
{
"name": "gatsby-plugin-fresnel",
"version": "1.1.0",
"author": "Chris Santamaria <[email protected]>",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/chrissantamaria/gatsby-plugin-fresnel.git",
"keywords": [
"gatsby",
"gatsby-plugin",
"fresnel"
],
"scripts": {
"build": "babel src --out-dir .",
"watch": "babel -w src --out-dir .",
"prepare": "cross-env NODE_ENV=production yarn build"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"webpack-virtual-modules": "^0.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"babel-preset-gatsby-package": "^1.3.0",
"cross-env": "^7.0.3"
},
"peerDependencies": {
"@artsy/fresnel": "^6.1.0",
"gatsby": ">2.0.0",
"react": "^16.9.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
}
}