This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 KB
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": "osubot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"migration": "tsc && npx typeorm migration:run",
"start": "node ./dist",
"start:ts": "npm run build && node ./dist",
"start:dev": "node ./dist --debug",
"start:tsdev": "npm run build && node ./dist --debug"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.9",
"@types/md5": "^2.2.1",
"@types/node": "^14.14.10",
"@types/node-cron": "^2.0.3",
"@types/puppeteer": "^3.0.5",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dateformat": "^4.0.0",
"dotenv": "^8.2.0",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"glob": "^7.1.7",
"int64-buffer": "^0.99.1007",
"jsdom": "^16.5.3",
"leb": "^0.3.0",
"md5": "^2.3.0",
"node-cron": "^2.0.3",
"puppeteer": "^5.5.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^4.2.0",
"typeorm": "^0.2.32",
"vk-io": "^4.0.0-rc.30"
},
"devDependencies": {
"@types/dateformat": "^3.0.1",
"@types/glob": "^7.1.3",
"@types/jsdom": "^16.2.10",
"@types/sqlite3": "^3.1.6",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2"
},
"nodemonConfig": {
"ignore": [
"*.db",
"*.json",
"*.ts"
],
"delay": 500
}
}