forked from gatsby-uc/gatsby-source-strapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
{
"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": {
"prepare": "npm run build",
"build": "babel src --out-dir .",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write 'src/**/*.js'",
"watch": "babel -w src --out-dir ."
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"strapi"
],
"dependencies": {
"axios": "^0.19.2",
"gatsby-node-helpers": "^0.3.0",
"gatsby-source-filesystem": "^2.2.2",
"lodash": "^4.17.15",
"pluralize": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"pre-commit": "^1.2.2",
"prettier": "^1.5.3"
},
"pre-commit": [
"format"
]
}