forked from Orlandohub/gatsby-v2-plugin-page-transitions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.43 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
{
"name": "gatsby-plugin-page-transitions",
"description": "Gatsby plugin to set page transitions",
"license": "MIT",
"author": "Mong-Kuen Sun <[email protected]>, Joel Pierre <[email protected]>",
"version": "1.0.9",
"homepage": "https://github.com/JPPdesigns/gatsby-v2-plugin-page-transitions",
"bugs": {
"url": "https://github.com/JPPdesigns/gatsby-v2-plugin-page-transitions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/JPPdesigns/gatsby-v2-plugin-page-transitions"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"page",
"transitions",
"page-transitions"
],
"main": "index.js",
"scripts": {
"dev": "concurrently \"yarn run prettier-watch\" \"yarn run build-watch\" --kill-others",
"build-watch": "onchange 'src/**/*.js' 'src/**/*.jsx' -- yarn run build",
"prettier-watch": "onchange 'src/**/*.js' 'src/**/*.jsx' -- prettier --write {{changed}}",
"build": "babel src --out-dir .",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.26.0",
"concurrently": "^3.6.0",
"onchange": "^4.0.0",
"prettier": "^1.13.7"
},
"dependencies": {
"history": "^4.7.2",
"prop-types": "^15.6.2",
"react-transition-group": "^2.4.0"
}
}