-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.46 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
{
"name": "@pstdl/ui",
"version": "0.1.0",
"description": "",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/mtu-pstdl/pstdl-ui.git"
},
"author": "PSTDL <ejcobb@mtu.edu> (https://pstdl.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtu-pstdl/pstdl-ui/issues"
},
"homepage": "https://github.com/mtu-pstdl/pstdl-ui/wiki",
"dependencies": {
"@material-ui/core": "latest",
"@material-ui/icons": "latest",
"@material-ui/lab": "latest",
"@types/events": "latest",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"events": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.2.4"
},
"devDependencies": {
"react-scripts": "4.0.3",
"@types/node": "^12.20.12"
},
"main": "build/js/index",
"types": "build/dts/index",
"files": [
"build"
],
"scripts": {
"test": "react-scripts start",
"compile": "npm run clean && mkdir -p build && tsc --build tspublish.json && npm run css-copy",
"css-copy": "cd src/pstdl-ui && find . -name '*.css' -exec cp --parents '{}' ../../build/js \\; && cd ../../",
"clean": "rm -rf build",
"prepublishOnly": "npm run compile",
"postpublish": "npm run clean"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}