-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.92 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
{
"name": "jx-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node -r dotenv/config -r source-map-support/register .",
"start:submission-getter": "nodemon --exec 'node -r dotenv/config -r source-map-support/register dist/lib/submissionGetter.js'",
"postinstall": "npm run build",
"dev": "tsc -w & nodemon --config .nodemonrc",
"build": "tsc",
"lint": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JudgeX-JX/backend.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JudgeX-JX/backend/issues"
},
"homepage": "https://github.com/JudgeX-JX/backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"amqplib": "^0.10.3",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-bearer-token": "^2.4.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^5.13.20",
"mongoose-paginate-v2": "^1.3.52",
"morgan": "^1.10.0",
"nodemailer": "^6.6.1",
"source-map-support": "^0.5.16",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.4",
"@types/hapi__joi": "^16.0.12",
"@types/helmet": "0.0.45",
"@types/jsonwebtoken": "^8.3.8",
"@types/mongoose": "^5.7.8",
"@types/mongoose-paginate-v2": "^1.3.1",
"@types/morgan": "^1.9.0",
"@types/node": "^13.11.0",
"@types/nodemailer": "^6.4.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.20",
"prettier": "2.0.4"
}
}