-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "js_quiz_bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"parse-md-in-json": "node ./scripts/parse-readme-to-json.js",
"start:dev": "nodemon ./src/app.ts",
"test": "node_modules/.bin/jest",
"lint": "node_modules/.bin/tslint src/**/*.ts",
"build": "node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collierrgbsitisfise/js_quiz_bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/collierrgbsitisfise/js_quiz_bot/issues"
},
"homepage": "https://github.com/collierrgbsitisfise/js_quiz_bot#readme",
"dependencies": {
"node-telegram-bot-api": "^0.30.0",
"redis": "^2.8.0",
"typescript": "^3.5.3"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/node-telegram-bot-api": "^0.31.0",
"@types/redis": "^2.8.13",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0"
}
}