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
70 lines (70 loc) · 2.1 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.1 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
61
62
63
64
65
66
67
68
69
70
{
"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": "12.12.12",
"@types/node-fetch": "2.5.4",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"eslint": "6.7.0",
"eslint-config-prettier": "6.7.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"nodemon": "2.0.1",
"prettier": "1.19.1",
"semantic-release": "^17.4.5",
"ts-node": "8.5.2",
"typescript": "3.7.2"
},
"dependencies": {
"@enitoni/gears": "^4.0.2",
"@enitoni/gears-discordjs": "^3.0.1",
"@types/he": "^1.1.1",
"@types/knex": "0.16.1",
"@types/pg": "7.14.3",
"discord.js": "^12.4.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"he": "^1.2.0",
"jimp": "^0.9.3",
"knex": "^0.21.12",
"node-fetch": "^3.1.1",
"pg": "8.2.0"
}
}