-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "gatsby-plugin-starter",
"version": "0.0.2",
"main": "index.js",
"author": "Ramón Chancay <ramonchancayortega@gmail.com>",
"bugs": {
"url": "https://github.com/devrchancay/gatsby-plugin-starter/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "tsc -watch",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\""
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-gatsby-package": "^0.1.3",
"cross-env": "^5.2.0",
"jest": "^24.9.0",
"prettier": "^1.15.3",
"regenerator-runtime": "^0.13.1",
"typescript": "^3.6.4"
},
"peerDependencies": {
"gatsby": ">3.0.0"
},
"homepage": "https://github.com/devrchancay/gatsby-plugin-starter",
"keywords": [
"gatsby",
"gatsby-plugin"
],
"repository": "https://github.com/devrchancay/gatsby-plugin-starter",
"dependencies": {
"@types/jest": "^24.0.20",
"gatsby-plugin-ts": "^2.0.1",
"ts-jest": "^24.1.0"
}
}