-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.78 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
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "meldingen-frontend",
"version": "0.0.0",
"description": "Frontends for the Signalen applications",
"author": "Gemeente Amsterdam",
"license": "EUPL-1.2",
"private": true,
"engines": {
"node": "^20",
"pnpm": "^9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alimpens/meldingen-frontend-nx.git"
},
"scripts": {
"build": "pnpm run /^build:/",
"build:admin": "pnpm -F=admin build",
"build:public": "pnpm -F=public build",
"dev": "pnpm run /^dev:/",
"dev:admin": "pnpm -F=admin dev",
"dev:public": "pnpm -F=public dev",
"generate-api-client": "openapi-ts",
"lint": "pnpm run /^lint:/ && npm run prettier && pnpm -r --no-bail lint && pnpm -r --no-bail typecheck",
"lint:css": "stylelint --allow-empty-input '**/*.{css,scss}'",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"lint-fix": "pnpm run /^lint-fix:/ && npm run prettier-fix && pnpm -r --no-bail lint --fix && pnpm -r --no-bail typecheck",
"lint-fix:css": "stylelint --fix '**/*.{css,scss}'",
"lint-fix:md": "markdownlint --fix **/*.md",
"prepare": "husky",
"prettier": "prettier --check .",
"prettier-fix": "prettier --write .",
"test": "pnpm -r --no-bail test",
"test:watch": "pnpm -r --no-bail test:watch",
"update-minor": "npm-check-updates --target minor --upgrade && pnpm install"
},
"dependencies": {
"@amsterdam/design-system-assets": "0.2.2",
"@amsterdam/design-system-css": "0.13.1",
"@amsterdam/design-system-react": "0.13.1",
"@amsterdam/design-system-react-icons": "0.1.13",
"@amsterdam/design-system-tokens": "0.13.0",
"@formio/react": "5.3.0",
"formiojs": "4.21.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.0",
"tslib": "2.8.1",
"vite-tsconfig-paths": "5.1.4"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-react": "7.26.3",
"@hey-api/openapi-ts": "0.59.1",
"@nx/eslint": "20.2.1",
"@nx/eslint-plugin": "20.2.1",
"@nx/jest": "20.2.1",
"@nx/js": "20.2.1",
"@nx/react": "20.2.1",
"@nx/vite": "20.2.1",
"@nx/web": "20.2.1",
"@nx/workspace": "20.2.1",
"@swc-node/register": "1.10.9",
"@swc/core": "1.10.1",
"@swc/helpers": "0.5.15",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.1.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "1.6.0",
"@vitest/ui": "1.6.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prefer-arrow-functions": "3.4.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"husky": "9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.43.0",
"msw": "2.6.8",
"npm-check-updates": "17.1.11",
"nx": "20.2.1",
"nx-stylelint": "18.0.0",
"prettier": "3.4.2",
"stylelint": "16.11.0",
"stylelint-config-css-modules": "4.4.0",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsc-files": "1.1.4",
"typescript": "5.7.2",
"vite": "5.4.11",
"vitest": "1.6.0"
},
"pnpm": {
"overrides": {
"webpack@>=5.0.0-alpha.0 <5.94.0": ">=5.94.0",
"nanoid@<3.3.8": ">=3.3.8"
}
}
}