-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.58 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
79
80
81
82
83
84
85
{
"name": "winnie_bot",
"version": "2.0.0",
"description": "Provides commands for Discord-based writing groups, including word wars, sprints and goals. Created for NaNoWriMo Melbourne Region",
"main": "src/index.ts",
"dependencies": {
"bullmq": "^1.40.1",
"class-validator": "^0.13.2",
"discord.js": "^13.1.0",
"i18next": "^19.8.4",
"i18next-fs-backend": "^1.0.7",
"luxon": "^1.25.0",
"node-cron": "^3.0.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.29",
"winston": "^3.2.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/i18next-fs-backend": "^1.0.0",
"@types/luxon": "^1.25.0",
"@types/node": "^14.11.10",
"@types/node-cron": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"dotenv": "^8.2.0",
"eslint": "^8.9.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"build": "tsc",
"docker:local:down": "docker-compose -f docker/docker-compose.local.yml down",
"docker:local:up": "docker-compose -f docker/docker-compose.local.yml up",
"dotenv:test": "tsc && node -r dotenv/config test.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"start": "tsc && NODE_TLS_REJECT_UNAUTHORIZED='0' node -r dotenv/config dist/src/index.js",
"start:worker:goal": "tsc && NODE_TLS_REJECT_UNAUTHORIZED='0' node -r dotenv/config dist/src/workers/goal-worker.js",
"typeorm": "tsc && NODE_TLS_REJECT_UNAUTHORIZED='0' node -r dotenv/config ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aigeroni/Winnie_Bot.git"
},
"authors": [
"Dawn E. Collett",
"Katie Macke"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aigeroni/Winnie_Bot/issues"
},
"homepage": "https://github.com/aigeroni/Winnie_Bot#readme",
"eslintConfig": {
"extends": "standard-with-typescript",
"ignorePatterns": "dist/",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": [
"sort-imports-es6-autofix"
],
"rules": {
"sort-imports-es6-autofix/sort-imports-es6": [
2,
{
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"all",
"single",
"multiple",
"none"
]
}
]
}
}
}