-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.17 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
{
"name": "send-inn-frontend",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev -p 3100",
"dev:mock": "cross-env-shell NODE_ENV=test next dev -p 3100",
"build": "next build",
"build:mock": "cross-env-shell NODE_ENV=test next build",
"build:static": "next build && next export",
"start": "next start -p 3100",
"start:with:test": "cross-env-shell NODE_ENV=test next start -p 3100",
"lint": "eslint .",
"prepare": "husky",
"cypress": "npx cypress open",
"cypress:headless": "npx cypress run",
"prettier": "prettier --write ."
},
"dependencies": {
"@navikt/aksel-icons": "^7.8.0",
"@navikt/ds-css": "^7.8.0",
"@navikt/ds-react": "^7.8.0",
"@navikt/nav-dekoratoren-moduler": "^3.1.1",
"@sentry/nextjs": "^8.43.0",
"axios": "^1.7.9",
"html-react-parser": "^5.2.0",
"jose": "^5.9.6",
"next": "^14.2.14",
"openid-client": "^5.7.0",
"prom-client": "^15.1.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.0",
"react-i18next": "^15.1.4",
"sanitize-html": "^2.13.1",
"styled-components": "^6.1.13",
"swr": "^2.2.5",
"use-debounce": "^10.0.4",
"uuid": "^10.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@sentry/cli": "^2.36.6",
"@testing-library/cypress": "^10.0.2",
"@types/node": "^22.10.1",
"@types/react": "^18.3.11",
"@types/sanitize-html": "^2.13.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"cypress": "^13.16.1",
"cypress-axe": "^1.5.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"msw": "^2.6.8",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"prettier --write"
]
},
"engines": {
"node": ">=20.0.0"
}
}