-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "gatsby-transformer-rawjson",
"version": "5.0.0",
"description": "Expose values as a GraphQL JSON scalar",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/diegonc/gatsby-transformer-rawjson.git"
},
"keywords": [
"gatsby",
"json",
"raw",
"scalar"
],
"author": "Diego Nieto Cid <dnietoc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegonc/gatsby-transformer-rawjson/issues"
},
"homepage": "https://github.com/diegonc/gatsby-transformer-rawjson#readme",
"peerDependencies": {
"gatsby": "^5.0.0"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"bluebird": "^3.7.2"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"babel-preset-gatsby-package": "^3.13.0-next.0",
"cross-env": "^7.0.3",
"flatted": "^2.0.0",
"json-cycle": "^1.3.0"
},
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production yarn build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"engines": {
"node": ">=12.13.0"
}
}