-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "ploot",
"version": "1.0.0",
"description": "An Overwatch bot that manages 6v6-Events or Scrims.",
"main": "index.ts",
"type": "module",
"scripts": {
"start-dev": "ts-node-esm src/index.ts --ignore **/*.spec.ts",
"start": "npm run build && node build/src/index.js",
"watch": "nodemon build/index.js",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test-ci": "cp ./src/__mocks__/mock-config.json config.json && npm run test && rm config.json",
"lint": "eslint .",
"format": "eslint . --fix",
"build": "tsc",
"ts-migrate": "ts-migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanleminh/ploot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stefanleminh/ploot/issues"
},
"homepage": "https://github.com/stefanleminh/ploot#readme",
"dependencies": {
"discord.js": "^14.14.1",
"keyv": "^4.5.4",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"standard": "^17.1.0",
"ts-jest": "^29.1.4",
"ts-migrate": "^0.1.35",
"ts-node": "^10.9.2",
"ts-standard": "^12.0.1",
"typescript": "^5.4.5"
},
"standard": {
"env": [
"jest"
]
}
}