-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"name": "ts-rpg-bot",
"version": "0.0.1",
"description": "building an rpg discord bot with typescript",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn ./src/index.ts",
"dbdev": "ts-node-dev ./src/database/setup.ts",
"dbsetup": "node ./dist/database/setup.js",
"start": "node ./dist/index.js",
"build": "tsc"
},
"keywords": [
"ts",
"rpg",
"bot",
"discord"
],
"author": "Markus",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^6.1.1",
"@types/node": "^12.7.8",
"@types/sqlite3": "^3.1.5",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"discord.js": "^11.5.1",
"dotenv": "^8.1.0",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"lodash": "^4.17.19",
"prettier": "^1.18.2",
"sqlite3": "^4.1.0",
"ts-node-dev": "^1.0.0-pre.43",
"typescript": "^3.6.3"
},
"devDependencies": {
"@types/lodash": "^4.14.144"
}
}