This repository has been archived by the owner on May 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 4.45 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@nl-design-system-unstable/example-next.js",
"author": "Community for NL Design System",
"description": "Example website built with Next.js and NL Design System",
"license": "EUPL-1.2",
"keywords": [
"nl-design-system"
],
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "npm run codegen && npm-run-all build:**",
"build:assets": "cp node_modules/@utrecht/assets/favicon.ico public/",
"build:next": "next build",
"clean": "rimraf .next/ src/generated/",
"download": "curl --output src/openapi/openapi.yaml https://api.huwelijksplanner.online/openapi.yaml",
"codegen": "openapi --exportCore true --useOptions --input src/openapi/openapi.yaml --output ./src/generated/ && mkdir -p ./src/generated/core/ && cp ./src/openapi/core/OpenAPI.ts ./src/generated/core/",
"start": "next start",
"lint-fix": "npm-run-all --continue-on-error lint-fix:** prettier",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:js": "eslint --ext '.js,.json,.jsx,.mdx,.ts,.tsx' --fix --report-unused-disable-directives .",
"lint": "npm-run-all --continue-on-error lint:**",
"lint:css": "stylelint '**/*.{css,scss}'",
"lint:js": "eslint --ext '.js,.json,.jsx,.ts,.tsx' --report-unused-disable-directives .",
"lint:package-json": "npmPkgJsonLint '**/package.json'",
"lint:package-lock": "npm ls",
"lint:prettier": "prettier --check .",
"lint:ts": "tsc --noEmit --project tsconfig.json",
"prettier": "prettier --write .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --verbose src/",
"update-patch": "npm-check-updates --configFileName .ncurc.patch.js --deep --dep dev,prod --target patch --upgrade && npm install",
"update-minor": "npm-check-updates --configFileName .ncurc.minor.js --deep --dep dev,prod --target minor --upgrade && npm install",
"update-major": "npm-check-updates --configFileName .ncurc.major.js --deep --dep dev,prod --target latest --upgrade && npm install",
"watch:test": "NODE_OPTIONS=--experimental-vm-modules jest --watch src/"
},
"dependencies": {
"@gemeente-denhaag/design-tokens-components": "0.2.3-alpha.316",
"@gemeente-denhaag/process-steps": "0.1.0-alpha.145",
"@utrecht/assets": "1.0.0-alpha.147",
"@utrecht/component-library-css": "1.0.0-alpha.526",
"@utrecht/component-library-react": "1.0.0-alpha.335",
"@utrecht/design-tokens": "1.0.0-alpha.519",
"@utrecht/web-component-library-react": "1.0.0-alpha.525",
"clsx": "1.2.1",
"lodash.assign": "4.2.0",
"lodash.clonedeepwith": "4.5.0",
"lodash.isplainobject": "4.0.6",
"lodash.merge": "4.6.2",
"next": "13.4.4",
"next-i18next": "11.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.44.3",
"react-loading-skeleton": "3.3.1"
},
"devDependencies": {
"@conductionnl/agenda-service": "github:Huwelijksplanner/AgendaService",
"@conductionnl/klanten-api": "github:CommonGateway/KlantenAPI",
"@conductionnl/overige-objecten-service": "github:Huwelijksplanner/OverigeObjecten",
"@conductionnl/trouw-service": "github:Huwelijksplanner/TrouwService",
"@nl-design-system-unstable/amsterdam-design-tokens": "1.0.0-alpha.107",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"@types/lodash.assign": "4.2.7",
"@types/lodash.clonedeepwith": "4.5.7",
"@types/lodash.isplainobject": "4.0.7",
"@types/lodash.merge": "4.6.7",
"@types/node": "18.16.16",
"@types/react": "18.2.8",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"eslint": "8.42.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-json": "3.1.0",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"npm-check-updates": "16.10.12",
"npm-package-json-lint": "6.4.0",
"npm-run-all": "4.1.5",
"openapi-typescript-codegen": "0.23.0",
"prettier": "2.8.8",
"prettier-plugin-gherkin": "1.1.1",
"react-i18next": "11.18.6",
"rimraf": "5.0.1",
"sass": "1.62.1",
"sharp": "0.32.1",
"stylelint": "15.7.0",
"stylelint-config-standard-scss": "9.0.0",
"stylelint-order": "6.0.3",
"typescript": "5.1.3"
},
"overrides": {
"@gemeente-denhaag/process-steps": {
"react": "18.2.0"
}
}
}