-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "polymart-bot",
"version": "0.0.1",
"description": "The official Polymart discord bot",
"main": "dist/index.js",
"scripts": {
"test": "tsc && node -r dotenv/config ./dist/test.js",
"start": "rm -R dist/; tsc && node -r dotenv/config ./dist/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts"
},
"keywords": [
"Discord",
"polymart"
],
"author": "DevScyu",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"consola": "^2.15.0",
"crypto-random-string": "^3.3.0",
"discord.js": "^12.5.0",
"dotenv": "^8.2.0",
"lodash": "^4.17.21",
"mysql2": "^2.2.5",
"path": "^0.12.7",
"slash-create": "^3.1.0",
"typeorm": "^0.2.32"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/hex2dec": "^1.1.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.19",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.18.0",
"express": "^4.17.1",
"fastify": "^3.15.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}