-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
123 lines (123 loc) · 3.53 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
117
118
119
120
121
122
123
{
"name": "zaken-frontend",
"version": "1.0.56",
"private": true,
"engines": {
"node": ">=20",
"npm": ">=8"
},
"scripts": {
"start": "PORT=2999 vite",
"acc": "PORT=2999 env-cmd -f .env.acceptance vite",
"build": "vite build",
"build:acc": "env-cmd -f .env.acceptance vite build",
"deploy:prod": "npm version patch && git push origin HEAD --follow-tags",
"swagger:generate-schema": "TS_NODE_PROJECT='./scripts/tsconfig.json' NODE_ENV='development' ts-node scripts/src/generateSwaggerSchema.ts",
"lint": "eslint --max-warnings 0 --cache --ext .ts,.tsx src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"test": "env-cmd -f .env.development jest --watchAll=false",
"test:watch": "jest",
"test:coverage": "jest --coverage --watchAll=false",
"cy": "npx cypress open",
"cy:run": "cypress run",
"dev": "vite",
"preview": "vite preview",
"prepare": "husky"
},
"dependencies": {
"@amsterdam/amsterdam-react-final-form": "^0.1.140",
"@amsterdam/asc-assets": "^0.38.0",
"@amsterdam/asc-ui": "^0.38.0",
"@amsterdam/wonen-ui": "^1.0.62",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@testing-library/jest-dom": "^ 6.6.3",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.merge": "^4.6.7",
"@types/qs": "^6.9.16",
"@types/react": "^17.0.43",
"@types/react-dom": "^18.0.3",
"@types/resize-observer-browser": "^0.1.7",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^4.3.1",
"axios": "^1.7.3",
"dayjs": "^1.11.13",
"env-cmd": "^10.1.0",
"eslint-config-react-app": "^7.0.1",
"final-form": "^4.20.10",
"final-form-arrays": "^3.0.2",
"immer": "^10.1.1",
"keycloak-js": "^25.0.6",
"lodash.debounce": "^4.0.8",
"lodash.isempty": "^4.4.0",
"lodash.merge": "^4.6.2",
"qs": "^6.13.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-router-dom": "^6.28.0",
"resize-observer-polyfill": "^1.5.1",
"styled-components": "^5.3.11",
"typescript": "5.6.3",
"vite": "^5.4.8",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^5.1.3"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@types/dotenv-flow": "^3.2.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.9.1",
"cypress": "^13.16.0",
"dotenv-flow": "^3.2.0",
"dtsgenerator": "^3.19.2",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.5.5",
"react-test-renderer": "^17.0.2",
"ts-node": "^10.9.1"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"IE 11"
]
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!src/**/index.{ts,tsx}"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/cypress/"
],
"modulePaths": [
"<rootDir>",
"./src"
],
"setupFilesAfterEnv": [
"@testing-library/jest-dom"
]
}
}