forked from navikt/flexjar-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.41 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
{
"name": "flexjar-frontend",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=20"
},
"dependencies": {
"@faker-js/faker": "^9.0.3",
"@navikt/aksel-icons": "^7.17.3",
"@navikt/ds-css": "^7.17.3",
"@navikt/ds-react": "^7.17.3",
"@navikt/ds-tailwind": "^7.17.3",
"@navikt/ds-tokens": "^7.4.0",
"@navikt/next-api-proxy": "^4.1.3",
"@navikt/next-logger": "^1.35.0",
"@navikt/oasis": "^3.7.0",
"@tanstack/react-query": "^5.66.0",
"@tanstack/react-table": "^8.21.2",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"nextleton": "^0.6.1",
"nuqs": "^2.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"tailwind-merge": "^2.6.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.1",
"@navikt/eslint-config-teamsykmelding": "^7.1.0",
"@playwright/test": "^1.48.2",
"@types/node": "^22.7.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-next": "15.2.1",
"next": "15.2.1",
"pino-pretty": "^13.0.0",
"playwright-core": "^1.51.0",
"prettier": "^3.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2"
},
"scripts": {
"dev": "MOCK_BACKEND=true next dev --turbopack -p 3000 | pino-pretty",
"local": "LOCAL_BACKEND=true next dev -p 3000 | pino-pretty",
"e2e": "playwright test",
"e2e:dev": "yarn e2e --ui",
"start": "next start -p 3000",
"build": "next build",
"prettier:write": "prettier --write .",
"prettier:check": "prettier --check .",
"lint": "eslint --ext=ts,tsx src",
"lint:fix": "eslint --ext=ts,tsx src --fix",
"format": "npm run prettier:write && npm run lint:fix"
},
"eslintConfig": {
"extends": [
"@navikt/eslint-config-teamsykmelding",
"next/core-web-vitals"
],
"rules": {
"postcss-modules/no-undef-class": "off",
"postcss-modules/no-unused-class": "off"
}
},
"prettier": "@navikt/eslint-config-teamsykmelding/prettier",
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}