-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.38 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "library-project-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"robottests": "robot --variablefile ./robot/library-project-secrets.py --removekeywords NAME:*logins* --outputdir robot/results robot/tests",
"eject": "react-scripts eject",
"dockertests": "robot --variable TESTUSERNAME:${TESTUSERNAME} --variable TESTPASSWORD:${TESTPASSWORD} --variable TESTUSERNAME2:${TESTUSERNAME2} --variable TESTPASSWORD2:${TESTPASSWORD2} --removekeywords NAME:*logins* --outputdir robot/results robot/tests",
"startserverandtest": "react-scripts start --port 3000 & wait-on http://localhost:3000 && npm run robottests",
"format": "prettier --write .",
"fmt:check": "prettier --check .",
"prepare": "husky install",
"pretty-quick": "pretty-quick"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": 0,
"eqeqeq": 0,
"@typescript-eslint/eqeqeq": 0
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.11.6",
"@mui/x-data-grid": "5.17.20",
"html5-qrcode": "^2.3.8",
"iso-3166-1-codes": "^1.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.7.0",
"react-scripts": "5.0.1",
"react-toastify": "^9.1.2",
"web-vitals": "3.1.1"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/jest": "29.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"gh-pages": "5.0.0",
"husky": "^8.0.3",
"prettier": "2.8.3",
"start-server-and-test": "1.15.3",
"typescript": "4.9.4",
"wait-on": "7.0.1",
"pretty-quick": "^3.1.3"
}
}