-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 860 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
{
"name": "hearthbot",
"version": "1.0.0",
"description": "Parent directory for hearthbot",
"main": "index.js",
"repository": "[email protected]:j0sh77/hearthbot-api.git",
"author": "Josh <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"deploy": "tsc; node dist/deploy.js",
"api:build": "cd api; yarn build",
"api:start": "cd api; yarn start",
"api:dev": "cd api; yarn dev",
"db:connect": "gcloud sql connect hearthbot -u root",
"lint": "eslint --fix"
},
"dependencies": {
"chalk": "4",
"dotenv": "^16.0.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@types/node": "^18.6.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"yargs": "^17.5.1"
}
}