-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.26 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
83
84
85
86
87
88
89
90
{
"name": "gatsby-source-plone",
"version": "0.3.0",
"description": "Source plugin for pulling data into Gatsby from Plone sites",
"main": "index.js",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": 2
}
],
[
"@babel/preset-react",
{
"useBuiltIns": true,
"pragma": "React.createElement"
}
]
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-transform-runtime",
{
"helpers": true,
"regenerator": true
}
]
]
},
"scripts": {
"build": "babel src --out-dir . --ignore '**/__tests__/'",
"watch": "babel -w src --out-dir . --ignore '**/__tests__/'",
"prepare": "cross-env NODE_ENV=production npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/collective/gatsby-source-plone"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-plugin",
"plone",
"cms",
"python",
"react",
"reactjs"
],
"author": "Ajay NS, Asko Soukka, Andrea Cecchi, Timo Stollenwerk, Victor Fernandez de Alba",
"license": "MIT",
"dependencies": {
"axios": "^0.21.0",
"axios-retry": "^3.1.9",
"gatsby": "^2.27.0",
"gatsby-source-filesystem": "^2.6.0",
"react": "^17.0.1",
"react-html-parser": "^2.0.2",
"react-serialize": "^0.2.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/runtime": "^7.12.5",
"babel-core": "7.0.0-bridge.0",
"core-js": "2",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.6.3",
"marked": "^1.2.5",
"nodemon": "^2.0.6",
"prettier": "^2.2.0",
"yalc": "^1.0.0-pre.47"
},
"resolutions": {
"babel-core": "7.0.0-bridge.0"
}
}