-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 KB
/
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
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
{
"name": "discordbot",
"version": "1.0.0",
"description": "discord bot",
"main": "dist/src/index.js",
"scripts": {
"build-dist": "./node_modules/typescript/bin/tsc",
"coverage": "vitest run --coverage",
"format": "prisma format",
"lint": "eslint . --ext .ts --fix",
"push": "prisma db push",
"seed": "prisma db seed",
"start": "nodemon ./dist/index.js",
"superbuild": "rm -rf dist/ && yarn build-dist && yarn push && yarn seed && yarn start",
"sb": "yarn superbuild",
"test": "vitest",
"watch": "nodemon -e ts --watch src --exec 'yarn build-dist && yarn start'",
"w": "yarn watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KirbyPaint/psychosomatic.git"
},
"author": "KirbyPaint",
"license": "MIT",
"bugs": {
"url": "https://github.com/KirbyPaint/psychosomatic/issues"
},
"homepage": "https://github.com/KirbyPaint/psychosomatic#readme",
"dependencies": {
"@prisma/client": "^4.15.0",
"axios": "^1.4.0",
"chalk": "4.1.2",
"discord.js": "^14.11.0",
"dotenv": "^16.1.4",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nodemon": "^2.0.22",
"openai": "^3.2.1",
"sqlite3": "^5.1.6",
"ts-node-dev": "^2.0.0",
"vite": "^4.3.9"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^20.2.6",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"prisma": "^4.15.0",
"ts-node": "^10.7.0",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"packageManager": "[email protected]"
}