-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
{
"name": "fyllut-ettersending",
"version": "0.1.0",
"main": "server.js",
"repository": "[email protected]:navikt/fyllut-ettersending.git",
"license": "MIT",
"private": true,
"scripts": {
"clean": "rimraf node_modules .next",
"dev": "next dev -p 3002",
"dev:test": "NODE_ENV=test next dev -p 3002",
"build": "next build",
"start": "next start -p 3002",
"lint": "eslint .",
"cypress": "cypress run",
"cypress:open": "cypress open",
"mocks": "mocks-server",
"mocks:no-cli": "mocks-server --no-plugins.inquirerCli.enabled",
"prepare": "husky",
"prettier": "prettier --write ."
},
"dependencies": {
"@navikt/aksel-icons": "^7.11.0",
"@navikt/ds-css": "^7.11.0",
"@navikt/ds-react": "^7.11.0",
"@navikt/fnrvalidator": "^2.1.5",
"@navikt/nav-dekoratoren-moduler": "^2.1.6",
"classnames": "^2.5.1",
"file-saver": "^2.0.5",
"i18next": "^24.2.0",
"jsdom": "^25.0.1",
"next": "^15.1.3",
"next-i18next": "^15.4.0",
"openid-client": "^5.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.4.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@mocks-server/cypress-commands": "^6.1.1",
"@mocks-server/main": "^4.1.0",
"@testing-library/cypress": "^10.0.3",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.13.1",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"axe-core": "^4.10.2",
"cross-env": "^7.0.3",
"cypress": "^13.16.1",
"cypress-axe": "^1.6.0",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^3.6.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{md,mdx}": [
"prettier --write"
]
}
}