-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.97 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "panelkit",
"version": "0.0.0",
"private": true,
"dependencies": {
"@mdi/react": "^1.4.0",
"@mdi/svg": "^5.2.45",
"@mdi/util": "^0.3.2",
"@sentry/browser": "^5.15.5",
"@sentry/integrations": "^5.15.5",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.3.1",
"@types/hls.js": "^0.12.6",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@types/rc-slider": "^8.6.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/reflexbox": "^4.0.1",
"@types/styled-components": "^5.1.0",
"@types/webfontloader": "^1.6.30",
"gulp": "^4.0.2",
"gulp-inline-source": "^4.0.0",
"gulp-replace": "^1.0.0",
"hls.js": "^0.13.2",
"jest-environment-jsdom-sixteen": "^1.0.3",
"moment": "^2.26.0",
"o9n": "^2.1.0",
"rc-slider": "^9.2.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"react-toastify": "^6.0.4",
"reflexbox": "^4.0.6",
"styled-components": "^5.1.0",
"typescript": "^3.9.2",
"webfontloader": "^1.6.28"
},
"scripts": {
"build-mdi": "bin/build-mdi",
"prestart": "bin/build-mdi",
"start": "REACT_APP_GIT_SHA=dev react-scripts start",
"prebuild": "bin/build-mdi",
"build": "npm run build:react && npm run build:bundle",
"build:react": "REACT_APP_GIT_SHA=`git rev-parse --short HEAD` PUBLIC_URL=. react-scripts build",
"build:bundle": "INLINE_RUNTIME_CHUNK=false GENERATE_SOURCEMAP=false SKIP_PREFLIGHT_CHECK=true gulp",
"serve": "serve -s build",
"test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"eject": "react-scripts eject"
},
"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"
]
}
}