-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.67 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
{
"name": "loot-lord",
"version": "0.4.0",
"description": "Yet another Discord bot",
"main": "dist/index.js",
"private": true,
"repository": "github:paskausks/loot-lord",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^13.13.36",
"@types/signale": "^1.4.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"concurrently": "^5.3.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.20.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"scripts": {
"build": "tsc && node dist/utils/write-build-info.js",
"build:watch": "concurrently -p \"[{name}]\" -n \"TSC,Node\" \"npm run build:watch:tsc\" \"npm run build:watch:node\"",
"build:watch:tsc": "tsc -w",
"build:watch:node": "nodemon --watch dist dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"start": "node dist/run.js",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch",
"knex": "knex",
"migrate": "knex migrate:latest"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"knex": "^0.21.13",
"moment": "^2.29.1",
"rxjs": "^6.6.3",
"signale": "^1.4.0",
"sqlite3": "^5.0.0"
},
"signale": {
"displayLabel": false
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}