-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.27 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
{
"name": "web-template",
"version": "0.1.0",
"private": true,
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint '**/*.{js,ts,tsx}' --max-warnings=0",
"test": "jest",
"test:ci": "jest --ci --coverage --coverageDirectory=coverage"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fontsource/roboto": "^4.2.2",
"@fontsource/roboto-mono": "^4.2.2",
"@material-ui/core": "^4.11.3",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@types/color": "^3.0.1",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-helmet": "^6.1.0",
"color": "^3.1.3",
"gatsby": "^3.1.0",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-material-ui": "^2.1.10",
"gatsby-plugin-mdx": "^2.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sitemap": "^3.1.0",
"gatsby-plugin-typescript": "^3.1.0",
"gatsby-plugin-typescript-checker": "^1.1.1",
"gatsby-source-filesystem": "^3.1.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"typescript": "^4.2.3"
},
"devDependencies": {
"@toitware/testing-utils": "^0.0.7",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^13.0.0",
"@types/jest": "^26.0.21",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^1.1.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-webpack-plugin": "^2.5.2",
"gatsby-plugin-eslint": "^3.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3"
}
}