-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.55 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
{
"name": "get-codeforce",
"version": "1.0.0",
"engines": {
"node": ">=12.10.0"
},
"engineStrict": true,
"main": "index.ts",
"license": "MIT",
"scripts": {
"pm2-crawl": "pm2 start crawl.config.js",
"pm2-diff": "pm2 start diff.config.js",
"lex-parse": "ts-node -r tsconfig-paths/register --files src/lex_parse/index.ts",
"embed": "ts-node -r tsconfig-paths/register --files src/embedding/index.ts",
"crawl": "ts-node -r tsconfig-paths/register --files src/crawl/index.ts",
"scan": "ts-node -r tsconfig-paths/register --files src/scan/index.ts",
"diff": "ts-node -r tsconfig-paths/register --files src/diff/index.ts",
"model": "ts-node -r tsconfig-paths/register --files model/index.ts",
"model-test": "ts-node -r tsconfig-paths/register --files model/model.spec.ts",
"get-testcase": "ts-node -r tsconfig-paths/register --files src/getTestcases/index.ts",
"play": "ts-node -r tsconfig-paths/register --files src/playground/index.ts",
"data-stats": "ts-node -r tsconfig-paths/register --files src/dataStats/index.ts"
},
"dependencies": {
"@types/cheerio": "^0.22.13",
"@types/diff": "^4.0.2",
"@types/dotenv": "^6.1.1",
"@types/htmlparser2": "^3.10.1",
"aws-sdk": "^2.528.0",
"cheerio": "^1.0.0-rc.3",
"child-process-promise": "^2.2.1",
"diff": "^4.0.1",
"dotenv": "^8.1.0",
"htmlparser2": "^4.0.0",
"nodemon": "^1.19.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.9.0",
"typed-rest-client": "^1.5.0",
"typescript": "^3.6.3",
"winston": "^3.2.1"
}
}