-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.77 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
{
"name": "cf-cheating-detector",
"version": "0.0.1",
"description": "Codeforces cheating detector",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "ts-node src/index.ts",
"start:client": "cd client && npm start",
"build": "tsc",
"build:client": "cd client && npm run build",
"postinstall": "npm run build && cd client && npm install && cd .. && npm run build:client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acmASCIS/cf-cheating-detector.git"
},
"author": "Ahmed Ragab (aragab22@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/acmASCIS/cf-cheating-detector/issues"
},
"homepage": "https://github.com/acmASCIS/cf-cheating-detector#readme",
"dependencies": {
"@types/lodash": "^4.14.145",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"codeforces-client": "0.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"http-delayed-response": "0.0.4",
"lodash": "^4.17.15",
"morgan": "^1.10.0",
"puppeteer": "^2.0.0",
"string-similarity": "^3.0.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.13",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/morgan": "^1.9.2",
"@types/puppeteer": "^1.20.2",
"@types/request": "^2.48.3",
"@types/string-similarity": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}