-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.33 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
{
"name": "shuvi",
"description": "A flexible, compatible discord bot written with TypeScript.",
"version": "0.2.0",
"author": "Sayakie <sayakie.ovo@gmail.com> (https://sayakie.com/)",
"license": "AGPL-3.0",
"main": "build/index.js",
"engines": {
"node": ">= 14"
},
"private": true,
"repository": "github:Sayakie/Shuvi",
"maintainers": [
"Sayakie"
],
"contributors": [],
"homepage": "https://github.com/Sayakie/Shuvi#README",
"bugs": {
"url": "https://github.com/Sayakie/Shuvi/issues/new?assignees=&labels=bug&template=bug_report.md&title=",
"email": "sayakie.ovo@gmail.com"
},
"esm": {
"await": true
},
"scripts": {
"start": "cross-env NODE_ENV=production node --experimental-modules --es-module-specifier-resolution=node build/index.js",
"start:watch": "nodemon --watch build --ext js --signal SIGHUP build/index.js --",
"dev": "cross-env NODE_ENV=development DEBUG=*,-dotenv-parse-variables ESM_DISABLE_CACHE=true TS_NODE_FILES=true TS_NODE_PROJECT=tsconfig.json node --experimental-modules --es-module-specifier-resolution=node -r esm -r ts-node/register src/index.ts",
"dev:watch": "nodemon --verbose --watch src --ext .ts --ignore tests/ --ignore *.test.ts --ignore *.spec.ts --delay 1 --signal SIGHUP --exec yarn dev --",
"prebuild": "del-cli --force build",
"build": "tsc --project tsconfig.json",
"lint": "eslint --color --ext .ts,.js \"src/\"",
"lint:fix": "yarn lint --fix"
},
"dependencies": {
"chalk": "^4.1.0",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"dotenv-extended": "^2.9.0",
"dotenv-mustache": "^1.0.0",
"dotenv-parse-variables": "^1.0.1",
"esm": "^3.2.25",
"nanoid": "^3.1.20",
"pretty-error": "^3.0.3",
"snap-db": "^1.1.6",
"walk-sync": "^2.2.0"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"del-cli": "^3.0.1",
"eslint": "^7.6.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-no-loops": "^0.3.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"optionalDependencies": {}
}