-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.63 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
55
56
57
58
59
60
61
62
63
{
"name": "falcobot",
"version": "1.0.0",
"description": "Falcodrin Discord Bot",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "yarn build && node ./dist/server.js",
"start:dev": "nodemon ./dist/server.js",
"gen:env:types": "gen-env-types .env -o src/env.d.ts -e .",
"test": "yarn build && ava -v",
"example:script": "yarn build && ts-node -T ./scripts/example.script.ts",
"discord:login": "yarn build && ts-node -T ./scripts/discord.login.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fossilz/falcobot.git"
},
"keywords": [
"nodejs",
"boilerplate",
"es6",
"es2015",
"babel",
"mocha",
"lint"
],
"author": "Tyler Fossilz Thinjon100",
"license": "MIT",
"bugs": {
"url": "https://github.com/fossilz/falcobot/issues"
},
"homepage": "https://github.com/fossilz/falcobot#readme",
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.7",
"@types/node": "^14.14.31",
"@types/node-cache": "^4.2.5",
"@types/sqlite3": "^3.1.7",
"@types/uuid": "^8.3.0",
"ava": "^3.15.0",
"eslint": "^7.20.0",
"fs-extra": "^9.1.0",
"gen-env-types": "^1.0.5",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^12.5.1",
"dotenv-safe": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"node-cache": "^5.1.2",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.2",
"uuid": "^8.3.2"
}
}