-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
{
"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.5.3",
"typescript": "5.8.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.842.0",
"@t3-oss/env-nextjs": "^0.13.4",
"@trpc/react-query": "^11.1.2",
"aws-sdk": "^2.1692.0",
"cookie": "^1.0.2",
"decimal.js": "^10.5.0",
"drizzle-kit": "^0.31.1",
"effect": "^3.16.10"
}
}