-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.38 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
{
"name": "sg-replay-parser",
"version": "0.1.0",
"description": "",
"main": "index.js",
"license": "GPL-3.0-or-later",
"scripts": {
"tsc": "tsc",
"build-dist": "rimraf dist && rimraf output && tsc --project tsconfig.build.json",
"schedule": "npm run build-dist && node dist/schedule.js",
"schedule-prod": "npm run build-dist && pm2 start dist/schedule.js --cron-restart=\"59 0 * * *\"",
"lint-files": "eslint ./src/**/*.ts",
"lint-tests": "eslint ./src/**/*.test.ts",
"lint": "npm run lint-files && npm run lint-tests",
"test": "jest --silent src/!tests",
"test:watch": "jest src/!tests --watch",
"generate-replays-list": "npm run build-dist && node dist/jobs/prepareReplaysList/start.js",
"generate-replays-list-dev": "npm run build-dist && NODE_ENV=development node dist/jobs/prepareReplaysList/start.js",
"parse": "npm run build-dist && node ./dist/start.js",
"parse-dev": "npm run build-dist && NODE_ENV=development node ./dist/start.js",
"parse-new-year": "npm run build-dist && node ./dist/!yearStatistics/index.js",
"parse-new-year-dev": "npm run build-dist && NODE_ENV=development node ./dist/!yearStatistics/index.js"
},
"author": "Afgan0r",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/archiver": "^5.3.1",
"@types/cli-progress": "^3.11.0",
"@types/fs-extra": "^11.0.2",
"@types/humps": "^2.0.1",
"@types/jest": "28.1.6",
"@types/jsdom": "^16.2.13",
"@types/lodash": "^4.14.181",
"@types/node": "^17.0.24",
"@types/qs": "^6.9.8",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^28.1.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "28.1.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.7",
"typescript": "^4.6.3"
},
"dependencies": {
"archiver": "^5.3.1",
"cli-progress": "^3.11.1",
"croner": "^7.0.2",
"csv-parse": "^5.4.0",
"dayjs": "^1.11.4",
"fs-extra": "^11.1.1",
"jsdom": "17.0.0",
"lodash": "^4.17.21",
"node-fetch": "2.x.x",
"p-limit": "3.1.0",
"pino": "^8.16.0",
"pino-pretty": "^10.2.3",
"qs": "^6.11.2",
"uuid": "^9.0.0"
}
}