-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "hackbot",
"version": "2.4.0",
"description": "Discord bot for the Cascades Tech Club Discord server.",
"repository": {
"type": "git",
"url": "https://github.com/osu-cascades/hackbot.git"
},
"main": "hackbot.js",
"scripts": {
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "ts-node src/index.ts --type-check",
"bs": "npm run build && npm start",
"watch": "nodemon build/hackbot.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:watch:coverage": "jest --watch --coverage",
"lint": "tslint src/**/*.ts __tests__/**/*.ts",
"lint:fix": "tslint --fix src/**/*.ts __tests__/**/*.ts"
},
"author": "osu-cascades",
"license": "MIT",
"engines": {
"node": "14.13.x"
},
"dependencies": {
"@types/axios": "^0.14.0",
"@types/dotenv": "^6.1.0",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.0",
"@types/lodash.camelcase": "^4.3.4",
"@types/node": "^13.7.2",
"axios": "^0.19.0",
"discord.js": "^11.4.2",
"dotenv": "^8.0.0",
"glob": "^7.1.3",
"lodash.camelcase": "^4.3.0",
"moment": "^2.22.2",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.1.6"
},
"devDependencies": {
"jest": "^25.1.0",
"ts-jest": "^25.1.0",
"tslint": "^5.11.0"
}
}