-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 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
{
"name": "dp-mine-dagpenger-frontend",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"test": "vitest",
"playwright": "npx playwright test",
"playwright-ui": "npx playwright test --ui",
"playwright-debug": "npx playwright test --debug",
"playwright:verbose": "DEBUG=pw:api npx playwright test",
"precommit-test": "vitest --run",
"prepare": "husky",
"setup-env": "cp .env.example .env",
"generate-token": "chmod +x ./script/token-generator.sh && ./script/token-generator.sh",
"graphql-codegen": "graphql-codegen --config graphql-codegen.ts"
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.9",
"@navikt/aksel-icons": "^7.4.3",
"@navikt/ds-css": "^7.4.3",
"@navikt/ds-react": "^7.4.3",
"@navikt/nav-dekoratoren-moduler": "^3.1.1",
"@navikt/oasis": "^3.3.0",
"@portabletext/react": "^3.1.0",
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.15.0",
"@remix-run/serve": "^2.14.0",
"@sanity/client": "^6.22.5",
"classnames": "^2.5.1",
"date-fns": "^4.1.0",
"graphql-request": "^7.1.0",
"groq": "^3.64.2",
"html-react-parser": "^5.1.10",
"isbot": "^5.1.9",
"msw": "^2.6.5",
"prom-client": "^15.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-typedjson": "^0.4.1",
"tiny-invariant": "^1.3.3",
"unleash-client": "^6.1.3",
"uuid": "^11.0.3"
},
"devDependencies": {
"@faker-js/faker": "^9.2.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "^4.2.5",
"@graphql-codegen/typescript": "4.1.1",
"@playwright/test": "^1.49.0",
"@portabletext/types": "^2.0.13",
"@remix-run/dev": "^2.15.0",
"@types/node": "^22.9.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"dotenv": "^16.4.5",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.7",
"lint-staged": "^15.2.7",
"typescript": "^5.5.4",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.3",
"vitest": "^2.1.5"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --list-different",
"eslint --max-warnings 0",
"bash -c tsc",
"bash -c 'npm run lint'"
]
},
"optionalDependencies": {
"@esbuild/linux-x64": "^0.24.0",
"@rollup/rollup-linux-x64-gnu": "^4.27.3",
"i": "^0.3.7",
"npm": "^10.9.1"
}
}