This repository was archived by the owner on Jul 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
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
58
59
60
{
"name": "codify",
"version": "1.0.0",
"engines": {
"node": ">=12.13.1"
},
"description": "A bot made for the Code Community Discord server",
"main": "src/index.ts",
"scripts": {
"lint": "eslint **/*.ts",
"lint:fix": "eslint **/*.ts --fix",
"start:dev": "node -r ./register.js src/index.ts",
"dev": "nodemon",
"build": "tsc",
"start": "node ./dist/src/index.js",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vyctor661/codify.git"
},
"keywords": [
"Codify"
],
"author": "Vyctor661",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vyctor661/codify/issues"
},
"homepage": "https://github.com/Vyctor661/codify#readme",
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/express": "4.17.2",
"@types/jimp": "^0.2.28",
"@types/node": "^17.0.17",
"@types/node-fetch": "^2.5.4",
"@types/ws": "^7.4.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"semantic-release": "^17.4.5",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@enitoni/gears": "^4.0.2",
"@enitoni/gears-discordjs": "^4.0.0",
"@types/he": "^1.1.1",
"@types/knex": "0.16.1",
"@types/pg": "7.14.3",
"discord.js": "^13.6.0",
"dotenv": "8.2.0",
"express": "4.17.1",
"he": "^1.2.0",
"jimp": "^0.9.3",
"knex": "^0.21.12",
"node-fetch": "^2.6.1",
"pg": "8.2.0"
}
}