-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "drake-bot",
"version": "1.1.3",
"description": "An Express-like command library for discord.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/lorof/drake-bot#readme",
"scripts": {
"start": "cross-env NODE_ENV=production node ./dist/main.js",
"dev": "cross-env NODE_ENV=development nodemon --exec ts-node ./example/main.ts",
"lint": "prettier --write ./src/**/*.ts && cross-env NODE_ENV=production eslint --fix ./src/**/*.ts",
"prebuild": "rimraf ./dist",
"prepublish": "npm run build",
"build": "tsc src/*.ts --outDir ./dist -d"
},
"license": "MIT",
"lint-staged": {
"src/**/*.ts": [
"npm run lint"
]
},
"keywords": [
"javascript",
"typescript",
"middleware",
"discord",
"commands"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/lodash": "^4.14.159",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"typescript": "^3.9.7"
},
"dependencies": {
"discord.js": "^12.4.1",
"lodash": "^4.17.19",
"ts-node": "^9.0.0"
}
}