-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
88 lines (88 loc) · 2.78 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
87
88
{
"name": "envelope-zero-frontend",
"dependencies": {
"@envelope-zero/ynap-parsers": "1.17.34",
"@headlessui/react": "1.7.19",
"@heroicons/react": "2.2.0",
"@tailwindcss/forms": "0.5.9",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"buffer": "6.0.3",
"cypress": "13.16.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"flowbite": "2.5.2",
"flowbite-react": "0.10.2",
"http-proxy-middleware": "3.0.3",
"i18next": "24.1.0",
"js-big-decimal": "2.1.0",
"postcss": "8.4.49",
"prettier": "3.3.0",
"react": "18.3.1",
"react-device-detect": "2.2.3",
"react-dom": "18.3.1",
"react-i18next": "15.3.0",
"react-router-dom": "6.28.0",
"sass": "1.82.0",
"stream-browserify": "3.0.0",
"tailwindcss": "3.4.16",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-eslint": "1.8.1",
"vite-tsconfig-paths": "4.3.2",
"web-vitals": "4.2.4",
"workbox-background-sync": "7.3.0",
"workbox-broadcast-update": "7.3.0",
"workbox-cacheable-response": "7.3.0",
"workbox-core": "7.3.0",
"workbox-expiration": "7.3.0",
"workbox-google-analytics": "7.3.0",
"workbox-navigation-preload": "7.3.0",
"workbox-precaching": "7.3.0",
"workbox-range-requests": "7.3.0",
"workbox-routing": "7.3.0",
"workbox-strategies": "7.3.0",
"workbox-streams": "7.3.0"
},
"scripts": {
"start": "vite --open",
"start:test": "VITE_API_BASE_URL='http://localhost:8081' vite",
"start-ci": "vite --host",
"build": "tsc && vite build",
"serve": "vite preview",
"server:dev": "docker-compose --project-name frontend-dev --file docker-compose-dev.yml up",
"server:test": "docker-compose --project-name frontend-test --file docker-compose-test.yml up",
"server:production": "docker-compose --project-name frontend-production --file docker-compose-production.yml up --build",
"test": "cypress run",
"test:watch": "cypress open",
"format": "prettier --write ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"prettier-plugin-tailwindcss": "0.6.9"
}
}