-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.44 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "radarsoft-core",
"version": "2.5.5",
"main": "index.ts",
"private": true,
"scripts": {
"reload": "yarn build && pm2 reload api",
"build": "yarn build-ts && yarn lint",
"build:win": "yarn build-ts:win && yarn run lint",
"watch-node": "nodemon dist/server.js",
"build-ts": "rm -rf dist/ && tsc || true",
"build-ts:win": "(if exist dist/ rmdir dist /s /q) && tsc",
"watch-ts": "rm -rf dist/ && tsc -w",
"run": "nohup node dist/server.js &",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"dependencies": {
"adm-zip": "^0.5.3",
"axios": "^0.21.1",
"axios-case-converter-updated": "^0.4.0",
"axios-mock-adapter": "^1.18.1",
"body-parser": "^1.19.0",
"brotli": "^1.3.2",
"canvas": "^2.6.1",
"cookie-parser": "^1.4.5",
"cron": "^1.8.2",
"csvtojson": "^2.0.10",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "~4.17.1",
"form-data": "^3.0.0",
"guid-typescript": "^1.0.9",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"morgan": "~1.9.0",
"node-html-parser": "^1.2.14",
"nodemailer": "^6.4.16",
"pg": "^7.18.2",
"radars-furaffinity-api": "^3.5.2",
"reflect-metadata": "^0.1.13",
"seedrandom": "^3.0.1",
"sharp": "^0.25.4",
"tmi.js": "^1.8.3",
"typeorm": "^0.2.34",
"winston": "^3.2.1"
},
"license": "GNU AGPLv3",
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/chai": "^4.2.11",
"@types/cheerio": "^0.22.17",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.4",
"@types/form-data": "^2.5.0",
"@types/mocha": "^7.0.2",
"@types/moment-timezone": "^0.5.13",
"@types/node": "^13.11.0",
"@types/nodemailer": "^6.4.0",
"@types/pg": "^7.14.3",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"@types/sharp": "^0.25.0",
"@types/tmi.js": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.2",
"nodemon": "2.0.2",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}