-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.76 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
{
"name": "ralph",
"description": "Ralph react component site for deployment",
"version": "0.1.0",
"author": "Roy Ronalds",
"dependencies": {
"core-js": "2",
"gatsby": "^2.0.76",
"gatsby-plugin-manifest": "^2.0.9",
"gatsby-plugin-offline": "^2.0.16",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-sass": "^2.0.7",
"node-sass": "^4.13.1",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0"
},
"keywords": [
"gatsby",
"react",
"jamstack"
],
"license": "UNLICENSED",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop -p 4444",
"develop": "gatsby develop -p 4444",
"deploy": "gatsby build && aws s3 sync --delete public s3://ralph-static/ && echo 'view at: d2trydf572z69q.cloudfront.net'",
"browse": "xdg-open http://localhost:4444",
"browse:staging": "xdg-open https://d2trydf572z69q.cloudfront.net",
"format": "prettier --write '**/*.js'",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-preset-gatsby": "^0.1.6",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.3",
"prettier": "^1.14.2",
"react-test-renderer": "^16.7.0"
},
"repository": {
"type": "git",
"url": "[email protected]:tchalvak/ralph.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}