-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.19 KB
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
{
"name": "invoicely",
"version": "0.0.1",
"private": true,
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.9.1",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"sys-link": "./env-links.sh",
"postinstall": "patch-package",
"reset-repo": "git clean -Xdf",
"prepare": "husky",
"build": "turbo run build",
"dev": "turbo run dev",
"dev:scan": "turbo run dev & npx react-scan@latest localhost:3000",
"start": "turbo run start",
"production": "turbo run build && turbo run start",
"lint": "turbo run lint",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"db:generate": "dotenv -- turbo run db:generate",
"db:migrate": "dotenv -- turbo run db:migrate",
"db:push": "dotenv -- turbo run db:push",
"db:studio": "dotenv -- turbo run db:studio"
},
"devDependencies": {
"@effect/language-service": "^0.23.3",
"@invoicely/eslint-config": "workspace:*",
"@invoicely/typescript-config": "workspace:*",
"@types/node": "^22.15.3",
"dotenv-cli": "^8.0.0",
"husky": "^9.1.7",
"patch-package": "^8.0.0",
"prettier": "^3.5.3",
"prettier-plugin-sort-imports": "^1.8.7",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.9.15",
"typescript": "5.8.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1055.0",
"@t3-oss/env-nextjs": "^0.13.4",
"@trpc/react-query": "^11.17.0",
"cookie": "^1.0.2",
"decimal.js": "^10.5.0",
"drizzle-kit": "^0.31.10",
"effect": "^3.21.2"
},
"resolutions": {
"fast-xml-parser": "^4.5.4",
"handlebars": "^4.7.9",
"basic-ftp": "^5.3.1",
"form-data": "^4.0.4",
"axios": "^1.16.1",
"follow-redirects": "^1.16.0",
"kysely": "^0.28.17",
"defu": "^6.1.7",
"postcss": "^8.5.15",
"tar": "^7.5.8",
"tmp": "^0.2.6",
"flatted": "^3.4.2",
"preact": "^10.26.10",
"rollup": "^4.59.0",
"immutable": "^4.3.8",
"mdast-util-to-hast": "^13.2.1",
"serialize-javascript": "^7.0.5",
"@eslint/plugin-kit": "^0.3.4",
"playwright": "^1.55.1",
"tar-fs": "^2.1.4",
"yaml": "^2.8.3"
}
}