-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
120 lines (120 loc) · 3.56 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
{
"name": "top-frontend",
"version": "3.4.33",
"private": true,
"engines": {
"node": ">=20",
"npm": ">=8"
},
"scripts": {
"start": "vite",
"acc": "env-cmd -f .env.acceptance vite",
"build": "vite build",
"build:acc": "env-cmd -f .env.acceptance vite build",
"test": "jest --watchAll=false",
"test:ci": "CI=true npm run test",
"lint": "eslint --cache --ext .ts,.tsx src",
"lint:fix": "npm run lint -- --fix",
"lint:quiet": "npm run lint -- --quiet",
"swagger:generate-schema:local": "dtsgen -o ./src/__generated__/apiSchema.d.ts --url http://localhost:8000/api/v1/schema/",
"swagger:generate-schema:acc": "dtsgen -o ./src/__generated__/apiSchema.d.ts --url https://acc.api.top.amsterdam.nl/api/v1/schema/",
"swagger:generate-schema": "dtsgen -o ./src/__generated__/apiSchema.d.ts --url https://api.top.amsterdam.nl/api/v1/schema/",
"deploy:acc": "git push origin main",
"deploy:prod": "npm version patch && git push origin HEAD --follow-tags",
"dev": "vite",
"preview": "vite preview"
},
"dependencies": {
"@amsterdam/amsterdam-react-final-form": "^0.1.141",
"@amsterdam/asc-assets": "^0.38.0",
"@amsterdam/asc-ui": "^0.38.0",
"@amsterdam/wonen-ui": "^1.0.57",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.4.3",
"@types/dompurify": "^3.0.5",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/qs": "^6.9.16",
"@types/react": "^17.0.43",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.0.3",
"@types/styled-components": "^5.1.26",
"@vitejs/plugin-react": "^4.3.3",
"axios": "^1.7.2",
"dayjs": "^1.11.13",
"dompurify": "^3.2.0",
"env-cmd": "^10.1.0",
"eslint-config-react-app": "^7.0.1",
"final-form": "^4.20.10",
"final-form-arrays": "^3.1.0",
"immer": "^10.1.1",
"jwt-decode": "^3.1.2",
"keycloak-js": "^25.0.6",
"lodash.difference": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isequal": "^4.5.0",
"qs": "^6.13.0",
"react": "^17.0.2",
"react-app-polyfill": "^3.0.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.9",
"react-final-form-arrays": "^3.1.4",
"react-router-dom": "^6.28.0",
"styled-components": "^5.3.11",
"typescript": "5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.9.0",
"dtsgenerator": "^3.19.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.5",
"nock": "^13.5.5"
},
"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"
]
},
"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"
]
}
}