-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.43 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
{
"name": "cv",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "DEV_URL=http://localhost:3000/min-cv next dev -p 3001",
"build": "next build",
"start": "next start",
"test": "jest --passWithNoTests",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky",
"prettier": "prettier --check \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"prettier:fix": "prettier --write \"**/*.+(js|jsx|ts|tsx|json|yml|yaml|md|css)\"",
"setup_dependencies": "scripts/run-dependencies.sh",
"reset_samtykke": "curl -X POST -I http://localhost:8080/pam-cv-api/test/resett_hjemmel",
"pre-commit": "lint-staged"
},
"dependencies": {
"@grafana/faro-web-sdk": "^1.11.0",
"@navikt/aksel-icons": "^6.8.0",
"@navikt/ds-css": "^7.6.0",
"@navikt/ds-react": "^7.6.0",
"@navikt/nav-dekoratoren-moduler": "^3.1.0",
"@navikt/next-logger": "^1.23.0",
"@next/env": "^15.0.2",
"html-react-parser": "^5.1.18",
"jose": "^5.9.3",
"next": "^14.2.22",
"openid-client": "^5.7.0",
"pdfmake": "^0.2.14",
"prom-client": "^15.1.3",
"prop-types": "^15.8.1",
"react": "^18",
"react-dom": "^18",
"sanitize-html": "^2.13.1",
"swr": "^2.2.5",
"uuid": "^10.0.0",
"winston": "^3.14.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@navikt/aksel-stylelint": "^7.1.2",
"brfs": "^2.0.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"miragejs": "^0.2.0-alpha.3",
"prettier": "^3.2.5",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.0",
"transform-loader": "^0.2.4"
},
"lint-staged": {
"./*/**/*.{js,jsx,ts,tsx,json,yml,yaml}": [
"npx prettier --write",
"npx eslint --fix"
],
"./*/**/*.css": [
"npx prettier --write",
"npx stylelint --fix"
],
"*.{json,md}": [
"npx prettier --write"
]
}
}