-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "backend",
"version": "1.0.0",
"description": "Official services of Unnamed Team",
"main": "src/index.ts",
"type": "commonjs",
"scripts": {
"start": "yarn dev",
"dev": "node script/create_config.js && ts-node src/index.ts",
"lint": "eslint src/** --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unnamed/backend.git"
},
"keywords": [
"discord",
"bot",
"discordjs"
],
"author": "yusshu",
"license": "MIT",
"bugs": {
"url": "https://github.com/unnamed/backend/issues"
},
"homepage": "https://github.com/unnamed/backend#readme",
"devDependencies": {
"@types/bl": "^5.1.0",
"@types/cors": "^2.8.12",
"@types/node": "^15.12.2",
"@types/signale": "^1.4.4",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.3"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@types/express": "^4.17.13",
"bl": "^6.0.0",
"cors": "^2.8.5",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"signale": "^1.4.0"
},
"signale": {
"displayDate": true,
"displayTimestamp": true
}
}