-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.92 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "remix-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",
"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.12.2",
"@grafana/faro-web-tracing": "1.12.2",
"@navikt/aksel-icons": "7.8.1",
"@navikt/ds-css": "7.8.1",
"@navikt/ds-react": "7.8.1",
"@navikt/oasis": "3.6.0",
"@opentelemetry/sdk-node": "0.55.0",
"@portabletext/react": "3.2.0",
"@portabletext/to-html": "2.0.13",
"@remix-run/node": "2.15.1",
"@remix-run/react": "2.15.1",
"@remix-run/serve": "2.15.1",
"@rvf/remix": "6.3.0",
"@rvf/zod": "6.0.3",
"@sanity/client": "6.24.1",
"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.68.1",
"isbot": "5.1.18",
"lru-cache": "11.0.2",
"pino": "9.5.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"remix-utils": "7.7.0",
"tiny-invariant": "1.3.3",
"tinyduration": "3.3.1",
"unleash-client": "6.3.2",
"uuid": "11.0.3",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.1",
"@graphql-codegen/typescript": "4.1.2",
"@parcel/watcher": "2.5.0",
"@playwright/test": "1.49.1",
"@portabletext/types": "2.0.13",
"@remix-run/dev": "2.15.1",
"@remix-run/testing": "2.15.1",
"@types/canvas-confetti": "1.9.0",
"@types/compression": "1.7.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "10.0.0",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-playwright": "2.1.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"globals": "15.14.0",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.2.11",
"msw": "2.4.1",
"npm-run-all": "4.1.5",
"pino-pretty": "13.0.0",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.4"
},
"engines": {
"node": "22"
}
}