forked from IniZio/tellchima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 961 Bytes
/
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
{
"name": "tellchima",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pnpm start:dev",
"start:prod": "prisma migrate dev && node dist/main.js",
"start:dev": "ts-node src/main.ts",
"cli:publish-and-discard": "ts-node src/cli/publish-and-discard.ts",
"generate": "prisma generate",
"migrate": "prisma migrate deploy",
"create-migration": "prisma migrate dev",
"build": "tsup src/main.ts --sourcemap",
"typecheck": "tsup src/main.ts --sourcemap --dts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.8.0",
"@slack/bolt": "^3.12.2",
"cron": "^2.1.0",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"prisma": "^4.8.0",
"tsup": "^6.5.0",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/cron": "^2.0.0",
"@types/node": "^18.11.18",
"ts-node": "^10.9.1",
"typesync": "^0.9.2"
}
}