-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2 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
{
"name": "professor-kauri",
"version": "4.0.7",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"description": "Monorepo for the Professor Kauri framework, bot and related utilities",
"scripts": {
"prebuild": "npm run clean && npm install --production=false",
"build": "tsc -p src/tsconfig.json",
"watch": "tsc -p src/tsconfig.json --watch",
"clean": "npx rimraf dist",
"lint": "npx eslint src/**/*.ts",
"lint:fix": "npx eslint src/**/*.ts --fix",
"postversion": "git push && git push --tags",
"start": "node --enable-source-maps dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monbrey/professor-kauri.git"
},
"author": "monbrey",
"license": "MIT",
"bugs": {
"url": "https://github.com/monbrey/professor-kauri/issues"
},
"homepage": "https://github.com/monbrey/professor-kauri#readme",
"eslintConfig": {
"extends": "marine/prettier/node",
"ignorePatterns": [
"**/dist/*"
],
"rules": {
"@typescript-eslint/naming-convention": 0,
"quotes": [
"error",
"double",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
]
}
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/luxon": "^2.0.4",
"@types/node": "^16.11.11",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.32.0",
"eslint-config-marine": "^9.0.6",
"eslint-plugin-import": "^2.23.4",
"source-map-support": "^0.5.19",
"typescript": "^4.5.2"
},
"dependencies": {
"@log4js-node/logstashudp": "^1.2.1",
"change-case": "^4.1.2",
"common-tags": "^1.8.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"log4js": "^6.4.0",
"logstach": "github:log4js-node/logstashudp",
"luxon": "^2.0.2",
"mongodb": "^4.1.3",
"string-similarity": "^4.0.4",
"urpg.js": "^2.4.0"
}
}