-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.52 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
{
"name": "reception-app",
"version": "1.0",
"scripts": {
"start": "webpack-dev-server -d -w --inline",
"start:remote": "webpack-dev-server -d -w --inline --host 0.0.0.0",
"lint": "eslint src/**/*.ts",
"build": "webpack -p",
"webpack-stat-dev": "webpack -d --config webpack.config.stat.ts",
"webpack-stat": "webpack -p --config webpack.config.stat.ts"
},
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.16",
"@mui/styles": "^5.14.16",
"classnames": "^2.3.1",
"jsqr": "^1.4.0",
"localforage": "^1.10.0",
"qrcode": "^1.4.4",
"react": "^18.2.0",
"react-collapsed": "^4.1.1",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-redux": "^8.1.3",
"react-router-dom": "^6.3.0",
"redux": "^4.2.1",
"redux-actions": "^2.6.5",
"redux-saga": "^1.2.3",
"typesafe-actions": "4.4.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@types/copy-webpack-plugin": "^5.0.0",
"@types/html-webpack-plugin": "^3.2.1",
"@types/node": "^12.7.3",
"@types/qrcode": "^1.4.0",
"@types/react": "17.0.2",
"@types/react-dom": "^16.9.0",
"@types/react-modal": "^3.12.0",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^4.3.5",
"@types/terser-webpack-plugin": "^1.2.1",
"@types/webpack": "^4.39.1",
"@types/webpack-bundle-analyzer": "^2.13.3",
"@types/webpack-dev-server": "^3.1.7",
"@types/webpack-env": "^1.14.0",
"@types/workbox-webpack-plugin": "^5.1.5",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.4",
"css-loader": "^5.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.26.1",
"fork-ts-checker-webpack-plugin": "^1.5.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^2.2.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "1.4.1",
"ts-loader": "^6.0.4",
"ts-node": "^8.3.0",
"typescript": "^4.1.3",
"webpack": "^4.39.3",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"workbox-sw": "^6.1.5",
"workbox-webpack-plugin": "^6.0.2"
}
}