forked from gatsby-uc/gatsby-source-strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.83 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gatsby-source-strapi",
"version": "2.0.0",
"description": "Gatsby source plugin for building websites using Strapi as a data source",
"author": {
"email": "hi@strapi.io",
"name": "Strapi Solutions",
"url": "http://strapi.io"
},
"maintainers": [
{
"name": "Strapi Solutions",
"email": "hi@strapi.io",
"url": "http://strapi.io"
}
],
"directories": {
"lib": "./lib"
},
"files": [
"lib/*",
"gatsby-node.js",
"index.js"
],
"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": {
"prepublishOnly": "npm run build",
"build": "babel src --out-dir lib",
"watch": "babel -w src --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"strapi"
],
"dependencies": {
"axios": "0.24.0",
"commonmark": "^0.30.0",
"gatsby-source-filesystem": "4.5.1",
"lodash": "^4.17.21",
"qs": "^6.10.3"
},
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/plugin-transform-runtime": "7.14.5",
"@babel/preset-env": "7.14.7",
"eslint": "7.13.0",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2"
},
"peerDependencies": {
"gatsby": "^4.0.0",
"gatsby-plugin-image": "^2.5.1",
"gatsby-plugin-sharp": "^4.5.1",
"sharp": "^0.29.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}