This repository was archived by the owner on Apr 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 KB
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
{
"name": "@nexys/mui-list",
"version": "1.1.0",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.8.3",
"@nexys/utils": "^3.5.15"
},
"scripts": {
"lint": "eslint src/",
"start": "react-scripts start",
"buildpackage": "babel src/lib --out-dir dist/; rm dist/**.test.js",
"build": "PUBLIC_URL=/mui-list react-scripts build;rm -rf docs;mv build docs;cp docs/index.html docs/404.html",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"main": "dist/index.js",
"files": [
"dist/*"
],
"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"
]
},
"devDependencies": {
"@babel/preset-react": "^7.8.3",
"@nexys/babelsetup": "^0.0.6",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.40",
"react-tiny-popover": "^4.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"styled-components": "^5.0.0",
"world-countries": "^3.0.0"
}
}