-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.03 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": "web",
"description": "web application for RDGA website",
"version": "1.0.0",
"private": true,
"type": "module",
"dependencies": {
"@reduxjs/toolkit": "2.2.7",
"@tinymce/tinymce-react": "5.1.1",
"@vitejs/plugin-react-swc": "3.7.0",
"million": "3.1.11",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router": "6.26.2",
"react-router-dom": "6.26.2",
"react-router-hash-link": "2.4.3",
"react-toastify": "10.0.5",
"styled-components": "6.1.13",
"vite": "5.4.8",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "5.0.1",
"workbox-cacheable-response": "7.1.0",
"workbox-core": "7.1.0",
"workbox-expiration": "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-window": "7.1.0"
},
"devDependencies": {
"@eslint/js": "9.11.1",
"@million/lint": "1.0.0-rc.84",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/bun": "1.1.10",
"@types/node": "22.7.0",
"@types/react": "18.3.9",
"@types/react-dom": "18.3.0",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/react-router-hash-link": "2.4.9",
"@vitest/coverage-v8": "2.1.1",
"eslint": "9.11.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"jest-styled-components": "7.2.0",
"jsdom": "25.0.1",
"postcss-styled-syntax": "0.6.4",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"stylelint": "16.9.0",
"stylelint-config-clean-order": "6.1.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-recommended": "14.0.1",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.2",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0",
"vite-plugin-pwa": "0.20.5",
"vitest": "2.1.1",
"vitest-matchmedia-mock": "1.0.6"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"eslint:check": "yarn eslint src",
"stylelint:check": "stylelint './src/**/*.(js|ts|tsx)'",
"types:check": "tsc -p tsconfig.json --noEmit ",
"check": "bun eslint:check && bun stylelint:check && bun types:check",
"docker:pull": "docker pull cherkasik/rdga-web:latest",
"docker:start": "docker run -d -p 81:80 cherkasik/rdga-web:latest",
"docker:build:push": "docker build . -t cherkasik/rdga-web:latest && docker push cherkasik/rdga-web:latest",
"docker:build:local": "docker build . -t rdga-web:local",
"docker:start:local": "docker run -d -p 81:80 rdga-web:local"
}
}