generated from digitalservicebund/remix-application-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.24 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
{
"name": "a2j-kommunikationsplattform",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"test": "jest test",
"test:e2e": "playwright test --config=tests/e2e/playwright.config.ts",
"test:a11y": "playwright test --config=tests/a11y/playwright.config.ts",
"test:generate-coverage": "jest --coverage",
"lint:check": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write --ignore-unknown .",
"style:check": "npm run format:check && npm run lint:check",
"style:fix": "npm run format:fix && npm run lint:fix",
"audit:licences": "license-checker --production --excludePrivatePackages --onlyAllow '' --summary"
},
"dependencies": {
"@digitalservice4germany/angie": "^1.2.0",
"@digitalservice4germany/style-dictionary": "^2.0.0",
"@digitalservicebund/icons": "^2.0.0",
"@remix-run/node": "^2.14.0",
"@remix-run/react": "^2.14.0",
"@remix-run/serve": "^2.14.0",
"classnames": "^2.5.1",
"isbot": "^5.1.17",
"jsonwebtoken": "^9.0.2",
"openid-client": "^6.1.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"remix-auth": "^4.1.0",
"remix-auth-oauth2": "^3.2.1",
"tailwindcss": "^3.4.12",
"zod": "^3.23.8"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.49.0",
"@remix-run/dev": "^2.14.0",
"@remix-run/eslint-config": "^2.14.0",
"@testing-library/jest-dom": "^6.6.1",
"@testing-library/react": "^16.0.1",
"@total-typescript/ts-reset": "^0.6.1",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.3",
"@types/react": "^18.3.7",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-checker": "^25.0.1",
"prettier": "3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}