-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
110 lines (110 loc) · 3.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@educodar/web",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "1.0.0",
"author": "Educodar BH <[email protected]>",
"dependencies": {
"@material-ui/styles": "4.11.4",
"@mdx-js/mdx": "1.5.8",
"@mdx-js/react": "1.5.8",
"gatsby": "3.0.0",
"gatsby-image": "2.3.2",
"gatsby-plugin-csp": "1.1.3",
"gatsby-plugin-html-attributes": "1.0.5",
"gatsby-plugin-layout": "1.2.1",
"gatsby-plugin-manifest": "2.3.3",
"gatsby-plugin-material-ui": "3.0.1",
"gatsby-plugin-mdx": "1.1.7",
"gatsby-plugin-netlify": "2.2.1",
"gatsby-plugin-offline": "3.1.2",
"gatsby-plugin-prefetch-google-fonts": "1.4.3",
"gatsby-plugin-react-helmet": "3.2.2",
"gatsby-plugin-robots-txt": "1.6.14",
"gatsby-plugin-sharp": "2.5.4",
"gatsby-plugin-sitemap": "2.3.1",
"gatsby-plugin-typography": "2.4.1",
"gatsby-source-filesystem": "2.2.2",
"gatsby-transformer-sharp": "2.4.4",
"logrocket": "1.3.0",
"metax": "0.19.4",
"moment": "2.30.0",
"muy": "0.19.5",
"netlify-cms-app": "2.15.59",
"prop-types": "15.7.2",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-helmet": "6.0.0",
"snyk": "1.996.0"
},
"devDependencies": {
"@commitlint/cli": "8.3.6",
"@commitlint/config-conventional": "8.3.6",
"@material-ui/core": "4.12.3",
"@testing-library/cypress": "6.0.1",
"babel-jest": "25.5.1",
"codecov": "3.8.3",
"cypress": "4.12.1",
"eslint-plugin-cypress": "2.12.1",
"gatsby-cli": "2.12.17",
"gatsby-plugin-canonical-urls": "2.2.1",
"husky": "4.3.8",
"identity-obj-proxy": "3.0.0",
"jest": "25.5.4",
"netlify": "4.9.0",
"prettier": "2.3.2",
"react-test-renderer": "16.13.1",
"start-server-and-test": "1.13.1"
},
"keywords": [
"educodar",
"gatsby",
"react"
],
"license": "MIT",
"scripts": {
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages --write-to-file",
"build:local": "gatsby build",
"ci": "npm run testc && npm run report-coverage",
"clean": "rm -rf reduxcache*/ && gatsby clean",
"cy:open": "cypress open",
"cy:run": "cypress run",
"deploy": "git push",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"open:local": "open http://localhost:8000",
"open:prod": "open https://educodar.com.br",
"postcheckout": "npm run clean && npm install",
"precommit": "npm run test:staged",
"prepush": "npm test && npm run test:e2e:ci && npm run build",
"report-coverage": "codecov",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"testc": "jest --coverage",
"testu": "jest -u",
"testw": "jest --watch",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"test:e2e:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"test:staged": "sh bin/test-staged.sh",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/educodar/web.git"
},
"bugs": {
"url": "https://github.com/educodar/web/issues"
},
"homepage": "https://github.com/educodar/web#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"post-checkout": "npm run postcheckout",
"pre-commit": "npm run precommit",
"pre-push": "npm run prepush"
}
},
"snyk": true
}