-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.87 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
{
"name": "hbk-stream-front",
"version": "1.10.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/material-ui": "^0.21.9",
"@types/node": "^16.4.8",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/socket.io-client": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"scripts": {
"build": "parcel build src/index.html",
"build:prod": "NODE_ENV=production && rimraf dist && npm run build",
"dev": "set -e && tsc --noEmit --watch & parcel ./src/index.html",
"tar": "tar -cvf ./deploy.tar --exclude='*.map' ./captain-definition ./dist/*",
"deploy": "npm run build:prod && npm run tar && caprover deploy -t ./deploy.tar",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"@material-ui/styles": "^4.11.4",
"@mdi/js": "^5.9.55",
"@mdi/react": "^1.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"qrcode.react": "^1.0.1",
"react": "^17.0.2",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-files": "^3.0.0-alpha.1",
"react-jss": "^10.7.1",
"react-router-dom": "^5.2.0",
"socket.io-client": "^4.1.3",
"typeface-roboto": "^1.1.13"
}
}