-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
76 lines (76 loc) · 1.98 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
{
"name": "globocom-opensource",
"description": "Globo Open Source community website",
"version": "0.1.0",
"author": "globo",
"keywords": [
"opensource",
"community",
"globocom",
"gcom",
"gatsby"
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/globocom/opensource"
},
"engines": {
"node": ">= 8.9.0",
"yarn": ">= 1.0.0"
},
"scripts": {
"build": "gatsby build",
"build:dev": "env-cmd -f .env.development gatsby build",
"develop": "gatsby develop",
"start": "run-p start:api develop",
"start:api": "nodemon ./api/server.js",
"format": "prettier --write '**/*.js'",
"serve": "gatsby serve",
"test": "jest",
"test:watch": "jest --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"formik": "^1.5.8",
"gatsby": "^2.18.10",
"gatsby-plugin-alias-imports": "^1.0.5",
"gatsby-plugin-google-analytics": "^2.1.31",
"gatsby-plugin-manifest": "^2.2.33",
"gatsby-plugin-react-helmet": "^3.1.18",
"gatsby-plugin-sharp": "^2.3.7",
"gatsby-plugin-styled-components": "^3.1.16",
"gatsby-source-filesystem": "^2.1.42",
"gatsby-transformer-json": "^2.2.22",
"gatsby-transformer-sharp": "^2.3.9",
"lodash": "^4.17.20",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-pluralize": "^1.6.3",
"styled-components": "^4.4.0",
"styled-media-query": "^2.1.2",
"yup": "^0.27.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"babel-jest": "^24.9.0",
"babel-preset-gatsby": "^0.2.25",
"body-parser": "^1.19.0",
"env-cmd": "^10.1.0",
"husky": "^3.0.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"json-server": "^0.15.1",
"nodemon": "^1.19.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1"
}
}