-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 923 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 923 Bytes
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
{
"name": "@milkshakecollective/somebot-bot",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MilkshakeCollective/bot-template.git"
},
"bugs": {
"url": "https://github.com/MilkshakeCollective/bot-template/issues"
},
"homepage": "https://github.com/MilkshakeCollective/bot-template#readme",
"scripts": {
"lint": "prettier --check --plugin-search-dir=. .",
"build": "turbo run build",
"format": "prettier --write --plugin-search-dir=. .",
"prisma": "npx prisma generate",
"start-bot": "node ./packages/bot/dist/index.js"
},
"devDependencies": {
"@types/node": "^20.11.27",
"dotenv-cli": "^7.4.1",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prisma": "^5.11.0",
"turbo": "^2.0.9",
"typescript": "^5.4.2"
},
"packageManager": "npm@10.8.1"
}