This repository was archived by the owner on Dec 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.39 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
60
61
62
63
64
65
66
67
68
69
{
"name": "gatsby-plugin-transitions",
"description": "Gatsby-plugin for animated page-transitions.",
"version": "2.1.7",
"author": "Andreas Faust",
"license": "MIT",
"repository": "AndreasFaust/gatsby-plugin-transitions",
"homepage": "https://andreasfaust.github.io/gatsby-plugin-transitions/",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"babel-plugin-macros": "^2.8.0",
"gatsby": "^2.18.17",
"gatsby-cli": "^2.8.22",
"gatsby-plugin-layout": "^1.1.18",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sass": "^2.1.26",
"generate-changelog": "^1.8.0",
"gh-pages": "^2.1.1",
"node-sass": "^4.13.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-select": "^3.0.8",
"react-spring": "^8.0.27",
"rollup": "^1.27.14",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-url": "^3.0.1",
"standard": "^14.3.1"
},
"peerDependencies": {
"gatsby": "^2.7.0",
"react": "^16.8.5",
"react-dom": "^16.8.5",
"react-spring": "^8.0.0"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"transitions",
"page-transitions",
"animation"
],
"scripts": {
"dev": "gatsby develop",
"start": "yarn dev",
"build": "rollup -c && gatsby build --prefix-paths",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && yarn publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && yarn publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && yarn publish",
"deploy": "gh-pages -d public"
}
}