This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
158 lines (158 loc) · 6.47 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"private": true,
"name": "grundsteuer",
"description": "",
"license": "",
"sideEffects": false,
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"audit:decrypt": "ts-node -r tsconfig-paths/register audit-decrypt.server.ts",
"audit:export": "ts-node -r tsconfig-paths/register audit-export.server.ts",
"audit:reEncrypt": "ts-node -r tsconfig-paths/register audit-reencrypt.server.ts",
"prebuild": "cp -v ./public/locales/de/all.json ./public/locales/de/all-${APP_VERSION}.json",
"build": "tsc --noEmit && run-s build:*",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build --sourcemap",
"build:cron": "esbuild --bundle --external:chokidar --platform=node --format=cjs ./start-cron.ts --outdir=build",
"build:console": "esbuild --bundle --external:chokidar --platform=node --format=cjs ./console.ts --outdir=build",
"clean": "rm -rf build public/build public/tailwind.css",
"db:migrate": "prisma migrate deploy",
"console": "node ./build/console.js",
"dev": "copy-env-cli && run-p dev:*",
"dev:server": "cross-env NODE_ENV=development node --inspect ./server.js",
"dev:remix": "cross-env NODE_ENV=development remix watch",
"dev:css": "cross-env NODE_ENV=development npm run generate:css -- --watch",
"generate:css": "tailwindcss -i ./app/styles/tailwind.css -o ./public/tailwind.css",
"lint:check": "eslint --ext .js,.ts,.tsx .",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --ignore-path .gitignore --check . **/*.html.njk",
"format:fix": "prettier --write --ignore-path .gitignore --ignore-unknown . **/*.html.njk",
"style:check": "run-s format:check lint:check",
"style:fix": "run-s format:fix lint:fix",
"check": "npm install && run-s build style:check test",
"pre-commit": "npm install && run-s build test && lint-staged",
"prepare": "is-ci || husky install",
"postinstall": "patch-package",
"start": "cross-env NODE_ENV=production node --max-http-header-size=65536 ./server.js",
"test": "cross-env NODE_OPTIONS=--no-warnings jest --testPathPattern=/app/ --maxWorkers=50%",
"test:e2e:long": "cross-env SKIP_AUTH=true SKIP_RATELIMIT=true start-server-and-test start http://localhost:3000 cypress:long",
"test:e2e:short": "cross-env SKIP_AUTH=true SKIP_RATELIMIT=true start-server-and-test start http://localhost:3000 cypress:short",
"test:e2e": "cross-env SKIP_AUTH=true SKIP_RATELIMIT=true start-server-and-test start http://localhost:3000 cypress",
"test:integration": "cross-env INTEGRATION_TEST=1 jest --testPathPattern=/test/integration/ --runInBand --forceExit",
"cypress:long": "cypress run --browser chrome --headless --config '{\"specPattern\":[\"test/e2e/banners.spec.ts\", \"test/e2e/miteigentum.spec.ts\", \"test/e2e/happypath.spec.ts\", \"test/e2e/steuernummer.spec.ts\"]}'",
"cypress:short": "cypress run --browser chrome --headless --config '{\"excludeSpecPattern\":[\"test/e2e/banners.spec.ts\", \"test/e2e/miteigentum.spec.ts\", \"test/e2e/happypath.spec.ts\", \"test/e2e/steuernummer.spec.ts\"]}' ",
"cypress": "cypress run --browser chrome --headless",
"cypress:open": "cypress open",
"docker:up": "docker-compose -f ./test/docker-compose-test.yml -p grundsteuer-test up -d",
"docker:down": "docker-compose -f ./test/docker-compose-test.yml -p grundsteuer-test down -v"
},
"dependencies": {
"@node-saml/node-saml": "^4.0.4",
"@prisma/client": "^5.0.0",
"@remix-run/express": "^1.17.1",
"@remix-run/node": "^1.17.1",
"@remix-run/react": "^1.17.1",
"@sentry/remix": "^7.56.0",
"@tailwindcss/typography": "^0.5.9",
"@xstate/graph": "^1.4.2",
"bcryptjs": "^2.4.3",
"bullmq": "^4.2.1",
"classnames": "^2.3.2",
"compression": "^1.7.4",
"copy-to-clipboard": "^3.3.3",
"cross-env": "^7.0.3",
"cross-fetch": "^4.0.0",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"debug": "^4.3.4",
"dotenv-safe": "^8.2.0",
"express": "^4.18.2",
"helmet": "^7.0.0",
"html-to-text": "^9.0.3",
"http-terminator": "^3.2.0",
"i18next": "^21.10.0",
"i18next-fs-backend": "^2.1.1",
"i18next-http-backend": "^2.2.0",
"ioredis": "^5.3.0",
"ip-range-check": "^0.2.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"node-cron": "^3.0.2",
"nunjucks": "^3.2.4",
"plausible-tracker": "^0.3.8",
"react": "^17.0.2",
"react-device-detect": "^2.2.2",
"react-dom": "^17.0.2",
"react-i18next": "^11.18.6",
"react-imask": "^6.6.1",
"remix-auth": "^3.5.0",
"remix-auth-email-link": "^2.0.2",
"remix-auth-form": "^1.3.0",
"remix-i18next": "^4.1.1",
"tiny-invariant": "^1.3.1",
"tsconfig-paths": "^4.2.0",
"unleash-client": "^4.1.0",
"useid-eservice-sdk": "^1.8.15",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"xstate": "^4.38.2"
},
"devDependencies": {
"@remix-run/dev": "^1.18.1",
"@remix-run/eslint-config": "^1.19.1",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/dotenv-safe": "^8.1.2",
"@types/express": "^4.17.17",
"@types/html-to-text": "^9.0.0",
"@types/i18next-fs-backend": "^1.1.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.192",
"@types/morgan": "^1.9.4",
"@types/node": "^20.3.1",
"@types/node-cron": "^3.0.7",
"@types/nunjucks": "^3.2.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@types/uuid": "^9.0.1",
"@types/validator": "^13.7.14",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.62.0",
"copy-env-cli": "^1.0.0",
"cypress": "^12.17.1",
"esbuild": "^0.18.6",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"fishery": "^2.2.2",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"jest": "^27.5.1",
"jest-mock-extended": "^3.0.1",
"lint-staged": "^13.2.0",
"npm-run-all": "^4.1.5",
"patch-package": "^8.0.0",
"prettier": "2.8.4",
"prisma": "^4.16.2",
"start-server-and-test": "^2.0.0",
"tailwindcss": "^3.3.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,tsx,md,html.njk}": "prettier --write"
},
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.18.1"
}
}