forked from hupe1980/gatsby-theme-material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 972 Bytes
/
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
{
"name": "gatsby-material-ui-components",
"description": "Material-UI componentes for Gatsby",
"version": "1.0.3",
"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": {
"@material-ui/core": ">=4.0.0",
"gatsby": ">=3.0.0",
"react": ">=16.8.6"
},
"devDependencies": {
"@material-ui/core": "^4.11.0",
"@testing-library/react": "^10.4.7",
"@testing-library/react-hooks": "^3.4.1",
"@types/jest": "^26.0.7",
"@types/react": "^16.9.43",
"gatsby": "^3.0.0",
"jest": "^26.1.0",
"react": "^16.8.6",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
}
}