-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 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
87
88
89
90
{
"name": "envelope-zero-frontend",
"dependencies": {
"@envelope-zero/ynap-parsers": "1.17.7",
"@headlessui/react": "1.7.19",
"@heroicons/react": "2.1.5",
"@tailwindcss/forms": "0.5.9",
"@testing-library/jest-dom": "6.4.5",
"@testing-library/react": "14.3.1",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "20.11.30",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "10.4.19",
"buffer": "6.0.3",
"cypress": "13.12.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.2",
"flowbite": "2.3.0",
"flowbite-react": "0.9.0",
"http-proxy-middleware": "2.0.7",
"i18next": "23.11.5",
"js-big-decimal": "2.0.7",
"patch-package": "8.0.0",
"postcss": "8.4.38",
"prettier": "3.3.0",
"react": "18.3.1",
"react-device-detect": "2.2.3",
"react-dom": "18.3.1",
"react-i18next": "14.1.2",
"react-router-dom": "6.23.1",
"sass": "1.77.4",
"stream-browserify": "3.0.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"vite": "5.2.14",
"vite-plugin-eslint": "1.8.1",
"vite-tsconfig-paths": "4.3.2",
"web-vitals": "3.5.2",
"workbox-background-sync": "7.1.0",
"workbox-broadcast-update": "7.1.0",
"workbox-cacheable-response": "7.1.0",
"workbox-core": "7.1.0",
"workbox-expiration": "7.1.0",
"workbox-google-analytics": "7.1.0",
"workbox-navigation-preload": "7.1.0",
"workbox-precaching": "7.1.0",
"workbox-range-requests": "7.1.0",
"workbox-routing": "7.1.0",
"workbox-strategies": "7.1.0",
"workbox-streams": "7.1.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 .",
"postinstall": "patch-package"
},
"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.5.14"
}
}