-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "ui",
"version": "0.1.0",
"private": true,
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"dev": "next dev -p 3000",
"build": "SKIP_ENV_VALIDATION=true next build",
"start": "next start",
"test": "SKIP_ENV_VALIDATION=true TZ=Europe/Helsinki jest --runInBand",
"test:watch": "SKIP_ENV_VALIDATION=true jest --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:css": "stylelint '**/*.tsx'",
"tsc:check": "tsc --noEmit --project tsconfig.json",
"tsc:clean": "tsc --build --clean",
"format": "prettier --ignore-path \"../.prettierignore\" --write \"**/*.{js,jsx,ts,tsx,json}\""
},
"dependencies": {
"@apollo/client": "^3.9.7",
"@hookform/resolvers": "^3.9.0",
"@sentry/nextjs": "^8.29.0",
"classnames": "^2.5.1",
"common": "workspace:*",
"date-fns": "^4.1.0",
"eslint-config-custom": "workspace:*",
"focus-trap-react": "^10.2.3",
"graphql": "^16.9.0",
"hds-core": "^4.1.0",
"hds-design-tokens": "^4.1.0",
"hds-react": "^4.1.0",
"i18next": "^23.15.1",
"lodash": "^4.17.21",
"next": "15.1.5",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^15.3.1",
"next-transpile-modules": "^10.0.1",
"nuka-carousel": "^7.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.1",
"react-transition-group": "^4.4.5",
"react-use": "^17.5.1",
"sass": "^1.81.0",
"styled-components": "5.3.11",
"tsconfig": "workspace:*",
"typescript-cookie": "^1.0.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@happy-dom/jest-environment": "^16.5.3",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/jest-axe": "^3.5.9",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.10",
"@types/react": "18.2.7",
"@types/react-dom": "18.3.0",
"@types/react-transition-group": "^4.4.11",
"@types/styled-components": "^5.1.29",
"@vercel/style-guide": "^6.0.0",
"axe-core": "^4.10.0",
"happy-dom": "^16.5.3",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.4.2",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-styled-components": "^0.1.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"waait": "^1.0.5"
},
"msw": {
"workerDirectory": "public"
}
}