-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "bitgud-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"copy-assets": "ts-node tools/copyAssets",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"build:start": "node ./dist/index.js",
"dev:start": "npm-run-all build start",
"dev": "nodemon",
"start": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install",
"bitgud-plugin": "bitgud-plugin"
},
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/oauth-app": "^3.4.0",
"@octokit/rest": "^18.7.2",
"@types/node-schedule": "^1.3.2",
"@types/socket.io": "^3.0.2",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"firebase-admin": "^9.11.0",
"moment": "^2.29.1",
"mongoose": "^5.13.5",
"morgan": "^1.10.0",
"node-schedule": "^2.0.0",
"octokit": "^1.1.0",
"socket.io": "^4.1.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.12",
"@types/morgan": "^1.9.3",
"@types/node": "^16.4.8",
"@types/shelljs": "^0.8.9",
"bitgud-plugin": "^1.0.6",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}