-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
102 lines (102 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
{
"name": "helse-speil-frontend",
"version": "2.0.0",
"private": true,
"author": "Team Bømlo",
"description": "Innsyn i saksbehandling av sykepenger",
"repository": {
"type": "git",
"url": "https://github.com/navikt/helse-speil.git"
},
"license": "MIT",
"scripts": {
"dev": "PORT=1234 next dev",
"prebuild": "next telemetry disable",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"tsc": "tsc",
"generate-graphql": "graphql-codegen --config graphql-codegen.yml",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix --rule react-hooks/exhaustive-deps:off"
]
},
"dependencies": {
"@amplitude/analytics-browser": "^2.11.8",
"@apollo/client": "^3.11.8",
"@grafana/faro-web-sdk": "^1.11.0",
"@grafana/faro-web-tracing": "^1.11.0",
"@navikt/aksel-icons": "^6.16.3",
"@navikt/ds-css": "^6.16.3",
"@navikt/ds-react": "^6.16.3",
"@navikt/oasis": "^3.4.0",
"@types/uuid": "^10.0.0",
"apollo-link-rest": "^0.9.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.13",
"framer-motion": "^11.11.11",
"graphiql": "^3.7.1",
"graphql": "^16.9.0",
"graphql-yoga": "^5.8.0",
"jose": "^5.9.6",
"nanoid": "^3.3.7",
"next": "^14.2.14",
"nextleton": "^0.6.1",
"prom-client": "^15.1.3",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.1",
"recoil": "^0.7.7",
"remeda": "^2.16.0",
"use-debounce": "^10.0.4",
"uuid": "^10.0.0",
"winston": "^3.15.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphiql/toolkit": "^0.11.0",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/fragment-matcher": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typed-document-node": "^5.0.11",
"@graphql-codegen/typescript": "^4.1.1",
"@graphql-codegen/typescript-operations": "^4.3.1",
"@graphql-tools/schema": "^10.0.7",
"@graphql-typed-document-node/core": "^3.2.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.14",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.14",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^15.2.10",
"next-router-mock": "^0.9.13",
"prettier": "^3.3.3",
"sass": "^1.80.5",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3",
"user-event": "^3.0.3"
},
"engines": {
"node": "20"
}
}