This repository was archived by the owner on Nov 28, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
44
45
46
47
48
49
50
51
{
"name": "stargate",
"version": "0.9.0",
"description": "A discord bot maybe?",
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint src",
"prebuild": "rm -rf ./dist",
"prepare": "if test \"$HUSKY\" != \"0\" ; then husky install ; fi",
"start": "npm run build && node -r dotenv/config ./dist/index.js",
"start:prod": "node ./dist/index.js",
"docs": "asciidoctor -D build/ docs/index.adoc",
"test": "echo 'No tests yet.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eddiejaoude/stargate.git"
},
"author": "EddieHub",
"license": "MIT",
"bugs": {
"url": "https://github.com/eddiejaoude/stargate/issues"
},
"homepage": "https://github.com/eddiejaoude/stargate#readme",
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/node": "^14.14.31",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"github-label-template": "0.0.2",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0"
}
}