-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
38 lines (38 loc) · 1.13 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": "testshoter",
"version": "2.2.1",
"description": "Discord bot that send content of questions on testportal.pl written in JavaScript",
"main": "src/index.ts",
"scripts": {
"start": "ts-node -r dotenv/config -r tsconfig-paths/register .",
"start:standalone": "ts-node -r dotenv/config -r tsconfig-paths/register . -- --standalone",
"start:dev": "ts-node-dev -r dotenv/config -r tsconfig-paths/register ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/fhodun/testshoter.git"
},
"author": "Filip Hodun",
"license": "MIT",
"bugs": {
"url": "https://github.com/fhodun/testshoter/issues"
},
"homepage": "https://github.com/fhodun/testshoter#readme",
"dependencies": {
"@typeit/discord": "^4.0.8",
"discord.js": "^12.5.1",
"inquirer": "^7.3.3",
"node-fetch": "^2.6.1",
"puppeteer": "^5.5.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node-fetch": "^2.5.7",
"@types/puppeteer": "^5.4.2",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3"
}
}