-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "lisa-bot",
"version": "0.0.1",
"author": "Lucien Blunk-Lallet",
"engines": {
"node": ">= 12.13 <13"
},
"scripts": {
"start:watch": "ts-node-dev src/main.ts",
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"dependencies": {
"dialogflow": "^1.2.0",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"moment": "^2.27.0",
"reflect-metadata": "^0.1.13",
"tslib": "~2.0.0",
"tsyringe": "^4.3.0"
},
"devDependencies": {
"@types/jest": "~26.0.0",
"@types/node": "~12.12.47",
"@typescript-eslint/eslint-plugin": "~3.2.0",
"@typescript-eslint/parser": "~3.2.0",
"eslint": "~7.2.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.13.2",
"jest": "~26.0.1",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.1.0",
"ts-node-dev": "^1.0.0-pre.44",
"tsutils": "~3.17.0",
"typescript": "~3.9.4"
}
}