-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.13 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.13 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vrt-frontend",
"version": "1.6.0",
"private": true,
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20"
},
"dependencies": {
"@babel/runtime": "^7.22.15",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/icons-material": "^5.14.9",
"@mui/material": "^5.14.10",
"@mui/styles": "^5.14.10",
"@mui/x-data-grid": "^6.14.0",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"konva": "^7.2.5",
"material-ui-popup-state": "^5.0.9",
"notistack": "^3.0.1",
"qs": "^6.11.2",
"react": "^17.0.2",
"react-debounce-input": "^3.3.0",
"react-dom": "^17.0.2",
"react-hotkeys-hook": "^4.4.1",
"react-joyride": "^2.5.5",
"react-konva": "^17.0.2-6",
"react-material-ui-form-validator": "^3.0.1",
"react-router-dom": "^6.16.0",
"socket.io-client": "^4.7.2",
"use-image": "^1.1.1",
"uuid": "^9.0.1"
},
"scripts": {
"start": "chmod +x ./env.sh && sh ./env.sh && cp env-config.js ./public/ && vite",
"test": "jest",
"format": "prettier --write integration_tests src *.js *.ts *.md",
"build": "vite build",
"lint": "eslint --ignore-path .gitignore . --ext .ts,.tsx,.jsx,.js",
"typescheck": "tsc --noEmit",
"test:pw:install": "NODE_TLS_REJECT_UNAUTHORIZED=0 npx playwright install --with-deps chromium",
"test:pw:local": "npm run test:pw:install && playwright test",
"test:pw:debug": "npm run test:pw:install && PWDEBUG=1 playwright test",
"test:pw:docker": "chmod +x ./test-docker.sh && ./test-docker.sh",
"test:pw:docker:update": "chmod +x ./test-docker.sh && ./test-docker.sh --update-snapshots"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^12.8.3",
"@types/file-saver": "^2.0.5",
"@types/jest": "^29.5.5",
"@types/node": "^18.17.17",
"@types/qs": "^6.9.8",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@types/react-material-ui-form-validator": "^2.1.1",
"@types/react-router-dom": "^5.3.3",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"@vitejs/plugin-react": "^4.0.4",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.5.3"
}
}