-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.79 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
{
"name": "thanks_bot_2",
"version": "1.0.0",
"description": "the second version of thanks_bot. Now in Typescript",
"main": "build/src/index.js",
"author": "Lenscas",
"license": "MIT",
"scripts": {
"start:dev": "nodemon",
"tester": "v",
"build": "rimraf ./build && ./node_modules/.bin/tsc",
"typeCheck": "rimraf ./build && ./node_modules/.bin/tsc --noEmit",
"start": "yarn build && yarn node build/src/index.js",
"prepareSql": "pgtyped -c postgres.json",
"migrate": "./node_modules/.bin/db-migrate",
"lintFix": "yarn lint --fix",
"lint": "./node_modules/.bin/eslint 'src/**/*.{js,ts}'",
"unitTest": "mocha -r ts-node/register test/**/*.spec.ts",
"test": "yarn lint && yarn unitTest"
},
"dependencies": {
"@discordjs/builders": "^0.15.0",
"@discordjs/rest": "^0.5.0",
"@pgtyped/query": "^1",
"@types/fast-levenshtein": "^0.0.2",
"@types/node": "^14.14.13",
"axios": "^0.21.0",
"cli-table3": "^0.6.0",
"discord-api-types": "^0.33.5",
"discord.js": "^13",
"fast-levenshtein": "^3.0.0",
"get-urls": "^11.0.0",
"node-html-parser": "^5.3.3",
"pg": "^8.3.3",
"typescript-pattern-matching": "^1.0.1"
},
"devDependencies": {
"@pgtyped/cli": "^1",
"@types/chai": "^4.2.13",
"@types/mocha": "^9.1.1",
"@types/pg": "^8.6",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.4.0",
"chai": "^4.2.0",
"db-migrate": "^0.11.11",
"db-migrate-pg": "^1.2.2",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^10.0.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"sinon": "^10",
"ts-mock-imports": "^1.3.0",
"ts-node": "^10",
"typescript": "^4"
}
}