-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "gatsby-source-tilda",
"version": "3.0.0",
"description": "Gatsby source plugin for building websites using the tilda.cc CMS as a data source",
"main": "gatsby-node.js",
"scripts": {
"build": "tsc",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "tsc --noEmit --watch"
},
"engines": {
"node": ">=14"
},
"author": "dmalexeev",
"license": "MIT",
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-source-tilda",
"tilda"
],
"dependencies": {
"@babel/runtime": "^7.16.7",
"axios": "^1.4.0",
"gatsby-source-filesystem": "^4.5.1",
"is-online": "^9.0.1",
"p-queue": "^8.0.1",
"progress": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.16.8",
"@babel/core": "^7.16.7",
"@periodica-press/linters": "^2.0.5",
"@types/progress": "^2.0.5",
"babel-preset-gatsby-package": "^2.5.0",
"cross-env": "^7.0.3",
"typescript": "^5.0.4"
},
"peerDependencies": {
"gatsby": "^4.0.0"
},
"bugs": {
"url": "https://github.com/periodica-press/gatsby-source-tilda/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/periodica-press/gatsby-source-tilda.git"
}
}