-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "gatsby-plugin-module-resolver",
"description": "Module resolver plugin for Gatsby",
"version": "1.0.3",
"license": "MIT",
"author": "Abdullah Ceylan <[email protected]>",
"homepage": "https://github.com/abdullahceylan/gatsby-plugin-module-resolver",
"bugs": {
"url": "https://github.com/abdullahceylan/gatsby-plugin-module-resolver/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/abdullahceylan/gatsby-plugin-module-resolver"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"module",
"resolver",
"alias",
"rewrite",
"resolve",
"rename",
"mapping",
"require",
"import"
],
"main": "index.js",
"scripts": {
"dev": "concurrently \"yarn run watch:prettier\" \"yarn run watch:build\" --kill-others",
"build": "babel src --out-dir .",
"watch:prettier": "onchange 'src/**/*.js' 'src/**/*.jsx' -- prettier --write {{changed}}",
"watch:build": "onchange 'src/**/*.js' 'src/**/*.jsx' -- yarn run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"concurrently": "^4.1.0",
"onchange": "^3.3.0",
"prettier": "^1.12.1"
},
"peerDependencies": {
"gatsby": ">=1"
}
}