-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.67 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
80
81
82
83
84
{
"name": "bot",
"private": true,
"version": "0.1.0",
"scripts": {
"build:docs": "./node_modules/typedoc/bin/typedoc --options typedoc.json",
"build:prisma": "pnpm run prisma:migrate && pnpm run prisma:generate",
"build:src": "./node_modules/typescript/bin/tsc -p ./tsconfig.json",
"cli": "./bin/dev",
"cli:deploy": "./bin/dev commands deploy",
"cli:deploy-dev": "./bin/dev commands deploy --development",
"exec": "./node_modules/ts-node/dist/bin.js -r tsconfig-paths/register",
"lint:check": "./node_modules/eslint/bin/eslint.js src",
"prettier:check": "./node_modules/prettier/bin/prettier.cjs --config .prettierrc.json --list-different ./src",
"prettier:fix": "node ./node_modules/prettier/bin/prettier.cjs --config .prettierrc.json --write ./src",
"prisma:generate": "npx prisma generate --schema ./prisma/schema.prisma",
"prisma:migrate": "npx prisma migrate dev --schema ./prisma/schema.prisma",
"prisma:studio": "pnpm prisma studio",
"start": "pnpm run exec -- src/index.ts",
"start:ignore": "pnpm run exec -T -- src/index.ts",
"start:watch": "./node_modules/nodemon/bin/nodemon.js"
},
"homepage": "https://github.com/norviah/bot#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/norviah/bot.git"
},
"bugs": {
"url": "https://github.com/norviah/bot/issues"
},
"files": [],
"oclif": {
"bin": "cli",
"dirname": "cli",
"commands": "./cli/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"commands": {
"description": "Commands for working with commands."
}
},
"hooks": {
"postrun": [
"./cli/hooks/postrun"
]
}
},
"devDependencies": {
"@tsconfig/node21": "^21.0.0",
"@types/app-root-path": "^1.2.8",
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"nodemon": "^3.0.1",
"oclif": "^3.14.0",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"type-fest": "^4.8.2",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-zod": "^1.1.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@norviah/logger": "^7.0.0",
"@oclif/core": "^2.15.0",
"@oclif/plugin-help": "^6.0.7",
"@prisma/client": "^5.6.0",
"app-root-path": "^3.1.0",
"discord.js": "^14.14.1",
"zod": "^3.22.4",
"zod-validation-error": "^2.1.0"
}
}