forked from navikt/helsesjekk-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.31 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": "helsesjekk",
"version": "1.0.0",
"license": "MIT",
"packageManager": "yarn@4.0.0",
"engines": {
"node": "20"
},
"scripts": {
"dev": "next dev | pino-pretty",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:migrate": "yarn prisma:migrate && yarn start",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate deploy",
"postinstall": "node ./scripts/postinstall.js"
},
"dependencies": {
"@navikt/aksel-icons": "^5.7.6",
"@navikt/ds-css": "^5.7.6",
"@navikt/ds-react": "^5.7.6",
"@navikt/ds-tailwind": "^5.7.6",
"@navikt/next-auth-wonderwall": "^1.5.0",
"@navikt/next-logger": "^1.21.0",
"@prisma/client": "5.5.2",
"@slack/bolt": "^3.14.0",
"autoprefixer": "^10.4.16",
"date-fns": "^2.30.0",
"next": "^14.0.0",
"next-logger": "^3.0.2",
"nextleton": "^0.6.1",
"node-cron": "^3.0.2",
"pino": "^8.16.1",
"postcss": "^8.4.31",
"prisma": "5.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recharts": "^2.9.0",
"remeda": "^1.28.0",
"sharp": "^0.32.6",
"tailwindcss": "^3.3.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@navikt/eslint-config-teamsykmelding": "^4.5.0",
"@types/node": "^20.8.9",
"@types/node-cron": "^3.0.10",
"@types/react": "18.2.33",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-plugin-import": "^2.29.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"nodemon": "^3.0.1",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"prettier-plugin-prisma": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"resolutions": {
"eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705"
},
"prettier": "@navikt/eslint-config-teamsykmelding/prettier",
"eslintConfig": {
"extends": [
"@navikt/eslint-config-teamsykmelding",
"next/core-web-vitals"
]
}
}