-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) Β· 2.31 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
{
"private": true,
"name": "patwoz-de",
"description": "https://patwoz.de",
"license": "MIT",
"sideEffects": false,
"scripts": {
"dev": "NODE_ENV=development bun --bun remix vite:dev",
"build": "NODE_ENV=production bun --bun remix vite:build",
"start": "NODE_ENV=production bun --bun remix-serve ./build/server/index.js",
"build-start": "bun run build && bun run start",
"format": "prettier --ignore-path .gitignore --write .",
"check-format": "prettier --ignore-path .gitignore --check .",
"test": "bun test",
"check-build": "bun run build",
"check-lint": "eslint --cache --ext .tsx,.ts,.js .",
"check-types": "tsc --noEmit --skipLibCheck",
"check-tests": "bun run test",
"validate": "run-p check-*",
"docker:build": "docker build -t patwoz-de:latest .",
"docker:run": " docker run --rm -p 3000:3000 --name patwoz-de patwoz-de:latest",
"docker:kill": "docker kill patwoz-de",
"dive": "dive build -t patwoz-de:latest .",
"test:e2e": "playwright test",
"build:deps": "bun run --filter '*' build"
},
"workspaces": [
"./packages/barcode"
],
"dependencies": {
"@heroicons/react": "^2.0.17",
"@remix-run/node": "^2.11.1",
"@remix-run/react": "^2.11.1",
"@remix-run/serve": "^2.11.1",
"bun-sqlite-migrations": "^1.0.2",
"bwip-js": "^4.1.2",
"clsx": "^1.2.1",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^1.12.0",
"zod": "^3.21.4",
"@patwoz.dev/barcode": "workspace:*"
},
"devDependencies": {
"@mdx-js/rollup": "^3.0.1",
"@playwright/test": "^1.33.0",
"@remix-run/dev": "^2.11.1",
"@remix-run/eslint-config": "^2.11.2",
"@tailwindcss/typography": "^0.5.9",
"@types/bwip-js": "^3.2.3",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.4",
"bun-types": "^1.1.29",
"checkly": "^4.0.4",
"eslint": "^8.40.0",
"lefthook": "^1.4.8",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rehype-pretty-code": "^0.14.0",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"vite": "^5.1.0",
"vite-tsconfig-paths": "^4.2.1"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"trustedDependencies": [
"esbuild"
]
}