generated from themetalfleece/nodejs-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.29 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
{
"name": "pokemon-data-bot",
"version": "0.1.0",
"description": "A Twitch bot which provides Pokemon data",
"main": "dist/src/index.js",
"author": "",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch src/**/*.ts --exec ts-node ./src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js",
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --loglevel silent --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@twurple/auth": "^5.2.7",
"@twurple/chat": "^5.2.7",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"string-similarity": "^4.0.4"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@types/string-similarity": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"typescript-eslint-parser": "^22.0.0"
}
}