-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.01 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
111
{
"name": "dp-rapportering",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"prepare": "husky",
"lint": "eslint",
"validate": "npm run lint && tsc",
"test": "vitest",
"test-coverage": "vitest --coverage",
"pre-commit": "lint-staged && npm run typecheck"
},
"dependencies": {
"@faker-js/faker": "9.7.0",
"@grafana/faro-web-sdk": "1.17.2",
"@mswjs/data": "0.16.2",
"@navikt/aksel-icons": "7.20.0",
"@navikt/ds-css": "7.20.0",
"@navikt/ds-react": "7.20.0",
"@navikt/nav-dekoratoren-moduler": "3.2.2",
"@navikt/oasis": "3.8.0",
"@portabletext/react": "3.2.1",
"@portabletext/types": "2.0.13",
"@remix-run/css-bundle": "2.16.5",
"@remix-run/express": "2.16.5",
"@remix-run/node": "2.16.5",
"@remix-run/react": "2.16.5",
"@remix-run/serve": "2.16.5",
"@remix-validated-form/with-zod": "2.0.7",
"@sanity/client": "6.29.1",
"classnames": "2.5.1",
"compression": "1.8.0",
"cross-env": "7.0.3",
"date-fns": "4.1.0",
"express": "4.21.2",
"groq": "3.86.1",
"html-react-parser": "5.2.3",
"isbot": "5.1.27",
"morgan": "1.10.0",
"msw": "2.7.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"remeda": "2.21.3",
"remix-validated-form": "5.1.5",
"tiny-invariant": "1.3.3",
"tinyduration": "3.4.1",
"uuidv7": "1.0.2",
"winston": "3.17.0",
"zod": "3.24.3",
"zod-form-data": "2.0.7"
},
"devDependencies": {
"@eslint/js": "9.25.1",
"@remix-run/dev": "2.16.5",
"@remix-run/testing": "2.16.5",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/compression": "1.7.5",
"@types/express": "5.0.1",
"@types/morgan": "1.9.9",
"@types/node": "22.15.3",
"@types/react": "18.3.20",
"@types/react-dom": "18.3.6",
"@vitejs/plugin-react": "4.4.1",
"@vitest/coverage-istanbul": "3.1.2",
"dotenv": "16.5.0",
"eslint": "9.25.1",
"eslint-config-prettier": "10.1.2",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"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.1.0",
"lint-staged": "15.5.1",
"npm-run-all": "4.1.5",
"prettier": "3.5.3",
"typescript": "5.8.3",
"typescript-eslint": "8.31.0",
"vite": "6.3.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.1.2"
},
"overrides": {
"@remix-run/server-runtime": {
"cookie": "0.7.2"
},
"remix-validated-form": {
"nanoid": "3.3.8"
}
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --list-different",
"eslint --max-warnings 0",
"bash -c tsc",
"bash -c 'npm run lint'"
]
}
}