-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.72 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
{
"name": "typescript-elysia-prisma-starter",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "dotenvx run -f .env.development -- bun --watch src/index.ts",
"preview": "dotenvx run -f .env.production -- bun --watch src/index.ts",
"start": "dotenvx run -f .env.production --overload --debug -- bun --watch src/index.ts",
"test": "dotenvx run -f .env.development -- bun test",
"prepare:fallback": "husky install",
"format": "prettier --write .",
"studio:local": "dotenvx run -f .env.development -- prisma studio",
"encrypt:dev": "dotenvx encrypt -f .env.development",
"encrypt:prod": "dotenvx encrypt -f .env.production",
"decrypt:dev": "dotenvx decrypt -f .env.development",
"decrypt:prod": "dotenvx decrypt -f .env.production",
"db:sync": "dotenvx run -f .env.development -- prisma db push",
"db:migrate:dev": "dotenvx run -f .env.development -- prisma migrate dev --name",
"db:migrate:deploy": "dotenvx run -f .env.production -- prisma migrate deploy"
},
"devDependencies": {
"@types/bun": "^1.1.12",
"@types/crypto-js": "^4.2.2",
"husky": "^8.0.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prisma": "^5.21.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"lint-staged": {
"*.{js,cjs,mjs,md,ts,vue,json,css}": [
"prettier --write"
]
},
"dependencies": {
"@dotenvx/dotenvx": "^1.21.0",
"@elysiajs/cors": "^1.1.1",
"@elysiajs/cron": "^1.1.1",
"@elysiajs/jwt": "^1.1.1",
"@elysiajs/static": "^1.1.2",
"@prisma/client": "^5.21.1",
"axios": "^1.7.7",
"crypto-js": "^4.2.0",
"dayjs": "^1.11.13",
"elysia": "^1.1.23",
"svg-captcha": "^1.4.0",
"uuid": "^11.0.2"
}
}