-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.36 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
{
"name": "mdlean",
"description": "Lean Material Design React Components",
"version": "0.47.0",
"license": "Apache-2.0",
"private": false,
"homepage": "https://fredericheem.github.io/mdlean/",
"keywords": [
"components",
"react",
"react-component",
"material design",
"emotion",
"theme"
],
"repository": {
"type": "git",
"url": "https://github.com/FredericHeem/mdlean.git"
},
"bugs": {
"url": "https://github.com/FredericHeem/mdlean/issues"
},
"peerDependencies": {
"@emotion/react": "*",
"@emotion/styled": "*",
"mobx": "*",
"mobx-react": "*",
"react": "*",
"react-dom": "*",
"rubico": "*"
},
"dependencies": {
"@babel/preset-react": "^7.22.3",
"@mui/material": "^5.13.3"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/plugin-transform-react-jsx": "^7.22.3",
"@babel/preset-env": "^7.22.4",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/babel-preset-css-prop": "^11.11.0",
"@emotion/core": "^11.0.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.0.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"axios": "^1.4.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^7.0.3",
"gh-pages": "^5.0.0",
"history": "^5.3.0",
"mitt": "^3.0.0",
"mobx": "^6.9.0",
"mobx-react": "^7.6.0",
"np": "^8.0.2",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"rubico": "^1.9.7",
"validate.js": "^0.13.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --transformIgnorePatterns \"node_modules/(?!axios)/\"",
"eject": "react-scripts eject",
"build:babel": "babel src --out-dir lib",
"build:watch": "babel src --out-dir lib -w",
"prepublish": "npm run build:babel",
"version": "npm test",
"postversion": "git push && git push --tags && npm run deploy",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"np": "np"
},
"browserslist": {
"production": [
">0.2%"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}