-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.85 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
78
79
80
81
82
83
84
85
86
{
"name": "haffa-web",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.173",
"@mui/material": "^5.14.5",
"@mui/x-data-grid": "^7.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@yudiel/react-qr-scanner": "^2.0.1",
"antd": "^5.8.4",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"eventemitter3": "^5.0.1",
"file-saver": "^2.0.5",
"handlebars": "^4.7.8",
"jwt-decode": "^3.1.2",
"koa": "^2.14.2",
"koa-compress": "^5.1.1",
"koa-proxies": "^0.12.3",
"koa-static": "^5.0.0",
"nanoid": "^4.0.2",
"path-to-regexp": "^6.2.1",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.2",
"react-markdown": "^8.0.7",
"react-qr-code": "^2.0.14",
"react-router-dom": "^6.13.0",
"react-scripts": "5.0.1",
"swiper": "^11.0.3",
"web-vitals": "^2.1.4",
"xlsx": "^0.18.5"
},
"scripts": {
"start": "react-scripts start",
"backend": "tsc -p ./webserver/tsconfig.json && node ./webserver/build/index.js",
"build": "react-scripts build && tsc -p ./webserver/tsconfig.json",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/file-saver": "^2.0.6",
"@types/jest": "^27.5.2",
"@types/koa-compress": "^4.0.6",
"@types/koa-proxies": "^0.11.0",
"@types/koa-static": "^4.0.4",
"@types/node": "^16.18.36",
"@types/react": "^18.2.13",
"@types/react-color": "^3.0.7",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.43.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"prettier": "^2.8.8",
"typescript": "^5.1.5"
}
}