-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.58 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
{
"name": "tiltakspenger-saksbehandling",
"version": "0.1.0",
"author": "NAV",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check .",
"format:all": "prettier --write .",
"prepare": "husky",
"test": "jest"
},
"dependencies": {
"@navikt/aksel-icons": "7.17.1",
"@navikt/ds-css": "7.17.1",
"@navikt/ds-react": "7.17.1",
"@navikt/ds-tokens": "7.17.1",
"@navikt/next-logger": "2.0.0",
"@navikt/oasis": "3.7.0",
"dayjs": "1.11.13",
"lodash.debounce": "4.0.8",
"next": "15.2.3",
"pino": "9.6.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.2",
"swr": "2.3.3",
"typescript": "5.8.2"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@types/lodash": "4.17.16",
"@types/node": "22.13.10",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@typescript-eslint/eslint-plugin": "8.26.0",
"eslint-config-next": "15.2.3",
"eslint-config-prettier": "10.1.1",
"eslint-plugin-css-modules": "2.12.0",
"husky": "9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.4.3",
"pino-pretty": "13.0.0",
"prettier": "3.5.3",
"ts-node": "^10.9.2"
},
"lint-staged": {
"*.{ts,tsx,css}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint"
]
}
}