forked from nfelger/achill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
{
"name": "achill",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev": "remix dev --manual",
"start": "remix-serve ./build/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 ''"
},
"dependencies": {
"@digitalservice4germany/angie": "1.1.1",
"@digitalservice4germany/style-dictionary": "^2.0.0",
"@remix-run/css-bundle": "^2.15.0",
"@remix-run/node": "^2.15.0",
"@remix-run/react": "^2.15.0",
"@remix-run/serve": "^2.15.0",
"@tailwindcss/forms": "^0.5.7",
"crypto-js": "^4.2.0",
"isbot": "^5.1.6",
"moment": "^2.29.4",
"nocodb-sdk": "^0.258.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.4",
"zod": "^3.24.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.10.0",
"@playwright/test": "^1.49.0",
"@remix-run/dev": "^2.15.0",
"@remix-run/eslint-config": "^2.15.0",
"@testing-library/jest-dom": "^6.6.2",
"@types/crypto-js": "^4.2.1",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.2.7",
"eslint": "^8.38.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"license-checker": "^25.0.1",
"msw": "^2.6.0",
"prettier": "^3.4.1",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}