forked from gatsby-uc/gatsby-source-strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.64 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
{
"name": "gatsby-source-strapi",
"version": "1.0.0-alpha.0",
"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"
}
],
"directories": {
"lib": "./lib"
},
"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": {
"@babel/plugin-transform-runtime": "7.12.1",
"axios": "0.21.0",
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "2.5.0",
"lodash": "4.17.20",
"pluralize": "8.0.0"
},
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/preset-env": "7.12.1",
"eslint": "7.13.0",
"husky": "4.3.0",
"lint-staged": "10.5.1",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}