-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "reol-chan",
"version": "1.2.2",
"description": "Discord Bot for r/reol",
"main": "index.ts",
"engines": {
"node": "16"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"start": "node build/index.js",
"build": "tsc",
"postinstall": "npm run build",
"update": "node build/commands/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/causztic/reol-chan.git"
},
"keywords": [
"discordjs"
],
"author": "Lim Yao Jie",
"license": "MIT",
"bugs": {
"url": "https://github.com/causztic/reol-chan/issues"
},
"homepage": "https://github.com/causztic/reol-chan#readme",
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"@prisma/client": "^3.1.1",
"@types/node-cron": "^2.0.4",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.7",
"@types/node-fetch": "^2.5.12",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"babel-jest": "^27.2.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.1",
"prisma": "^3.1.1"
}
}