-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.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": "min-side-arbeidsgiver",
"version": "0.1.0",
"homepage": "/min-side-arbeidsgiver",
"type": "module",
"dependencies": {
"@amplitude/analytics-browser": "2.11.8",
"@faker-js/faker": "8.4.1",
"@grafana/faro-web-sdk": "1.3.6",
"@navikt/aksel-icons": "^5.17.2",
"@navikt/arbeidsgiver-notifikasjon-widget": "7.2.1",
"@navikt/bedriftsmeny": "7.0.5",
"@navikt/ds-css": "^6.15.0",
"@navikt/ds-icons": "3.4.3",
"@navikt/ds-react": "^6.15.0",
"@navikt/nav-dekoratoren-moduler": "3.1.1",
"fuzzysort": "^1.1.4",
"immutable": "^4.3.6",
"msw": "2.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.24.0",
"swr": "^2.2.5",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/typescript": "^4.0.8",
"@graphql-codegen/typescript-operations": "^4.2.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest-axe": "^3.5.9",
"@types/node": "^20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-legacy": "5.4.1",
"@vitejs/plugin-react-swc": "3.7.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"husky": "^9.0.11",
"jest-axe": "^9.0.0",
"lint-staged": "^15.2.7",
"npm-run-all": "*",
"prettier": "^3.3.2",
"terser": "5.31.1",
"ts-jest": "^29.1.5",
"typescript": "5.5.3",
"vite": "5.4.6",
"vite-plugin-graphql-loader": "3.0.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "^1.6.0"
},
"scripts": {
"gql:cp_schema": "cp ../arbeidsgiver-notifikasjon-produsent-api/app/src/main/resources/bruker.graphql ./bruker.graphql",
"gql:generate": "graphql-codegen",
"clean": "rm -rf ./build/* && mkdir -p ./build",
"compile": "tsc --project tsconfig.build.json",
"build:demo": "vite build --mode demo",
"build:production": "vite build --mode production",
"build": "npm run clean compile && npm-run-all --parallel build:*",
"start": "vite --mode=demo --base=/min-side-arbeidsgiver/",
"lint": "eslint --ext ts,tsx .",
"test": "vitest run"
},
"lint-staged": {
"*": "prettier --write"
},
"msw": {
"workerDirectory": "src/mocks"
}
}