forked from gatsby-uc/gatsby-source-strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "gatsby-source-strapi",
"version": "0.0.12",
"description": "Gatsby source plugin for building websites using Strapi as a data source",
"author": {
"email": "[email protected]",
"name": "Strapi Solutions",
"url": "http://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions",
"email": "[email protected]",
"url": "http://strapi.io"
}
],
"repository": {
"type": "git",
"url": "git://github.com/strapi/gatsby-source-strapi.git"
},
"bugs": {
"url": "https://github.com/strapi/gatsby-source-strapi/issues"
},
"license": "MIT",
"homepage": "http://strapi.io",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src",
"watch": "babel -w src --out-dir ."
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"strapi"
],
"dependencies": {
"axios": "^0.18.0",
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^1.5.39",
"lodash": "^4.17.11",
"pluralize": "^7.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "7.4.0",
"husky": "4.2.5",
"lint-staged": "10.2.11",
"prettier": "^1.5.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}