-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.51 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
{
"name": "gp-judger",
"version": "0.0.1",
"license": "MIT",
"main": "built/index.js",
"types": "built/index.d.ts",
"description": "gp-judger",
"scripts": {
"lint": "eslint src --fix",
"check:lint": "eslint src -f codeframe",
"ci-eslint": "eslint src -f codeframe",
"format": "prettier -c ./src/**/*.ts --write",
"check:format": "prettier --check src/*.ts src/**/*.ts",
"ci-format": "prettier --check src/*.ts src/**/*.ts",
"build": "tsc",
"dev": "ts-node-dev --respawn -- src/index.ts",
"start": "node dist/index.js"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.182",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node-dev": "^1.0.0",
"typescript": "^4.6.4",
"why-is-node-running": "^2.2.2"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@types/node": "^16.11.7",
"axios": "^0.27.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"express": "^4.18.2",
"lodash": "^4.17.20",
"log4js": "^6.4.7",
"reflect-metadata": "^0.1.13"
}
}