-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.31 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": "@codeanker/api",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx prisma migrate deploy && tsx src/server.ts",
"dev": "tsx watch --inspect --clear-screen=false --env-file .env src/server.ts",
"createAccount": "tsx src/scripts/createAccount.ts",
"initMeilisearch": "tsx src/scripts/initMeilisearch.ts",
"cli": "tsx src/cli/index.ts",
"postinstall": "prisma generate",
"tsc": "tsc --noCheck",
"typecheck": "tsc --noEmit",
"lint": "eslint ."
},
"exports": {
".": {
"import": "./src/client.ts",
"require": "./src/client.ts"
},
"./test": {
"import": "./src/util/test.ts",
"require": "./src/util/test.ts"
}
},
"prisma": {
"seed": "tsx prisma/seeders/index.ts"
},
"dependencies": {
"@azure/storage-blob": "catalog:",
"@codeanker/authentication": "workspace:*",
"@codeanker/helpers": "workspace:*",
"@codeanker/service-sms": "file:../../vendor/codeanker-service-sms-0.0.2.tar.gz",
"@e965/xlsx": "^0.20.3",
"@faker-js/faker": "catalog:",
"@hono/node-server": "^1.19.10",
"@hono/trpc-server": "^0.4.0",
"@prisma/client": "^5.19.1",
"@prisma/extension-accelerate": "^1.1.0",
"@sendgrid/mail": "^8.1.0",
"@trpc/server": "catalog:",
"archiver": "^7.0.1",
"config": "^3.3.9",
"dayjs": "^1.11.10",
"dot-prop": "^9.0.0",
"fast-csv": "^5.0.1",
"handlebars": "^4.7.9",
"hono": "^4.12.4",
"http-errors": "^2.0.1",
"jsonwebtoken": "^9.0.2",
"meilisearch": "^0.37.0",
"mime": "^4.0.6",
"mjml": "^4.15.3",
"oauth4webapi": "^3.8.3",
"prom-client": "^15.0.0",
"superjson": "catalog:",
"uuid": "^11.0.5",
"winston": "^3.11.0",
"zod": "catalog:"
},
"devDependencies": {
"@codeanker/eslint-config": "workspace:*",
"@codeanker/typescript-config": "workspace:*",
"@inquirer/prompts": "^7.1.0",
"@types/archiver": "^7.0.0",
"@types/config": "^3.3.3",
"@types/http-errors": "^2.0.5",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/mjml": "^4.7.4",
"@types/node": "catalog:",
"commander": "^13.0.0",
"eslint": "catalog:",
"inquirer": "^13.2.5",
"prisma": "^5.19.1",
"tsx": "^4.2.0",
"typescript": "catalog:"
}
}