-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.35 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
{
"name": "juniper",
"version": "0.0.0",
"private": true,
"workspaces": [
"ui-core",
"ui-admin",
"ui-participant",
"e2e-tests"
],
"devDependencies": {
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@prosopo/vite-plugin-watch-workspace": "^1.0.2",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/json-stringify-safe": "^5.0.3",
"@types/mixpanel-browser": "^2.49.1",
"@types/node": "^18.19.39",
"@types/papaparse": "^5.3.14",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"babel-jest": "^29.7.0",
"chokidar-cli": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.23.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"prettier": "^3.4.2",
"prettier-eslint": "^11.0.0",
"react-select-event": "^5.5.1",
"sass": "^1.81.0",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^4.8.3",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-mkcert": "^1.17.5",
"vite-tsconfig-paths": "^4.3.2",
"whatwg-fetch": "^3.6.20"
},
"scripts": {
"test": "npm -w ui-core test && npm -w ui-admin test && npm -w ui-participant test",
"lint": "npm -w ui-core run build && eslint --max-warnings=0 e2e-tests/src ui-admin/src ui-core/src ui-participant/src",
"admin-dev-local": "VITE_UNAUTHED_LOGIN=true HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true npm -w ui-admin start",
"admin-dev": "HTTPS=true npm -w ui-admin start"
},
"dependencies": {
"@dnd-kit/core": "^6.2.0",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@yudiel/react-qr-scanner": "^2.0.8",
"mixpanel-browser": "^2.54.0",
"react-qr-code": "^2.0.15"
},
"overrides": {
"nan": ">=2.20.0"
}
}