-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.97 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
{
"name": "unknown-art",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint \"**/*.css\"",
"fix": "npm run fix:js && npm run fix:css",
"fix:js": "eslint . --fix",
"fix:css": "stylelint \"**/*.css\" --fix",
"test:unit": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"accept-language": "^3.0.20",
"exenv": "^1.2.2",
"fetch-meta-tags": "^1.0.12",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-resources-to-backend": "^1.2.1",
"mongodb": "^6.9.0",
"next": "^14.2.15",
"react": "18.3.1",
"react-cookie": "^7.2.2",
"react-dom": "18.3.1",
"react-focus-lock": "^2.13.2",
"react-hook-form": "^7.53.2",
"react-i18next": "^15.0.2"
},
"devDependencies": {
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/exenv": "^1.2.2",
"@types/fetch-meta-tags": "^1.0.4",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"@vitejs/plugin-react": "4.3.3",
"dotenv-cli": "^7.4.2",
"eslint": "^9.14.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.11.0",
"jsdom": "^25.0.1",
"stylelint": "^16.11.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.15.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.4"
}
}