-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "gatsby-material-ui-components",
"description": "Material-UI componentes for Gatsby",
"version": "5.3.0",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"react",
"material-ui",
"gatsby",
"typescript"
],
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc",
"build:watch": "rimraf lib && tsc -w",
"test": "jest",
"prepare": "npm run build"
},
"peerDependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@mui/material": "^5.1.0",
"gatsby": "^3.0.0 || ^4.0.0",
"react": "^16.8.6 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@mui/material": "^5.9.3",
"@testing-library/react": "^13.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.6",
"@types/react": "^18.0.1",
"gatsby": "^4.20.0",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"react": "^18.0.0",
"react-test-renderer": "^18.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.6.3"
}
}