-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"type-check": "tsc --project tsconfig.json",
"prepare": "husky",
"playwright": "npx playwright test",
"playwright:ui": "npx playwright test --ui",
"playwright:verbose": "DEBUG=pw:api npx playwright test",
"generate-token": "chmod +x ./token-generator.sh && ./token-generator.sh",
"generate-openapi-types": "npx openapi-typescript",
"grapql-codegen": "graphql-codegen --config codegen.ts"
},
"prettier": {
"printWidth": 100
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --list-different",
"eslint --no-warn-ignored --max-warnings 0",
"bash -c 'npm run type-check'"
]
},
"dependencies": {
"@elastic/ecs-pino-format": "1.5.0",
"@grafana/faro-web-sdk": "1.14.1",
"@grafana/faro-web-tracing": "1.14.1",
"@navikt/aksel-icons": "7.17.4",
"@navikt/ds-css": "7.17.4",
"@navikt/ds-react": "7.17.4",
"@navikt/oasis": "3.7.0",
"@opentelemetry/auto-instrumentations-node": "0.56.1",
"@opentelemetry/sdk-node": "0.57.2",
"@opentelemetry/sdk-trace-node": "1.30.1",
"@portabletext/react": "3.2.1",
"@portabletext/to-html": "2.0.14",
"@react-router/node": "7.4.0",
"@react-router/serve": "7.4.0",
"@rvf/react-router": "7.0.4",
"@rvf/zod": "7.0.2",
"@sanity/client": "6.28.3",
"canvas-confetti": "1.9.3",
"classnames": "2.5.1",
"date-fns": "4.1.0",
"graphql": "16.10.0",
"graphql-request": "7.1.2",
"groq": "3.80.1",
"isbot": "5.1.25",
"lru-cache": "11.0.2",
"openapi-fetch": "0.13.5",
"pino": "9.6.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-router": "7.4.0",
"remix-utils": "8.5.0",
"tiny-invariant": "1.3.3",
"tinyduration": "3.4.1",
"unleash-client": "6.6.0",
"uuid": "11.1.0",
"zod": "3.24.2"
},
"devDependencies": {
"@eslint/js": "9.22.0",
"@graphql-codegen/cli": "5.0.5",
"@graphql-codegen/client-preset": "4.7.0",
"@graphql-codegen/typescript": "4.1.5",
"@parcel/watcher": "2.5.1",
"@playwright/test": "1.51.0",
"@portabletext/types": "2.0.13",
"@react-router/dev": "7.4.0",
"@react-router/fs-routes": "7.4.0",
"@types/canvas-confetti": "1.9.0",
"@types/compression": "1.7.5",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@types/uuid": "10.0.0",
"eslint": "9.22.0",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "2.2.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "16.0.0",
"husky": "9.1.7",
"jsdom": "26.0.0",
"lint-staged": "15.5.0",
"msw": "2.7.3",
"npm-run-all": "4.1.5",
"openapi-msw": "1.2.0",
"pino-pretty": "13.0.0",
"prettier": "3.5.3",
"ts-node": "10.9.2",
"typescript": "5.8.2",
"typescript-eslint": "8.27.0",
"vite": "6.2.2",
"vite-tsconfig-paths": "5.1.4"
},
"optionalDependencies": {
"@esbuild/linux-x64": "0.25.1",
"@rollup/rollup-linux-x64-musl": "4.35.0"
},
"engines": {
"node": "22"
}
}