forked from madecomfy/gatsby-plugin-asset-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
49
50
51
52
{
"name": "gatsby-plugin-asset-path",
"version": "1.1.0",
"description": "Gatsby plugin that moves JS and CSS files and static folder to a custom folder",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir .",
"lint": "eslint src",
"test": "echo \"No test for now... yes we know.. it's baaaad\""
},
"author": "Ryan Chung <[email protected]>",
"license": "mit",
"repository": {
"type": "git",
"url": "git+https://github.com/madecomfy/gatsby-plugin-asset-path.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"assets",
"subdirectory"
],
"dependencies": {
"fs-extra": "^7.0.0",
"history": "^4.7.2",
"react": "^16.4.2",
"react-router-dom": "^4.3.1"
},
"peerDependencies": {
"gatsby": ">2.4.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^5.4.0",
"eslint-config-madecomfy": "^1.0.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-cypress": "^2.0.1",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^3.1.0"
}
}