-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@knighthacks/scythe",
"version": "1.0.2",
"type": "commonjs",
"description": "A command-driven discord.js addon",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16.10.0",
"npm": ">=7.24.2"
},
"scripts": {
"build": "tsc",
"start": "npm start:dev",
"start:dev": "NODE_ENV=development nodemon --exec ts-node --files ./src/index.ts",
"start:prod": "NODE_ENV=production tsc && node ./dist/index.js",
"test": "jest ./src",
"lint": "eslint ./src",
"pre-commit": "lint-staged",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/KnightHacks/scythe.git"
},
"author": "Suneet Tipirneni",
"license": "MIT",
"bugs": {
"url": "https://github.com/KnightHacks/scythe/issues"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"homepage": "https://github.com/KnightHacks/scythe#readme",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.0.2",
"@types/lodash": "^4.14.172",
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^27.3.1",
"discord.js": "^14.7.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.1.2",
"lodash": "^4.17.21",
"nodemon": "^2.0.15",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {
"ora": "^5.4.1",
"uuid": "^8.3.2"
},
"files": [
"/dist"
],
"keywords": [
"discord.js",
"discord",
"api"
]
}