-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.6 KB
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
{
"name": "coderatic",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && cp -R src/microservices/judge/. dist/microservices/judge && rm dist/microservices/judge/judge-queue.ts",
"start": "node dist/app.js",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-validator": "^3.0.0",
"@types/node": "^18.15.11",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-jwt": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"nodemon": "^3.0.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"amqplib": "^0.10.3",
"bcrypt": "^5.1.0",
"bull": "^4.10.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-session": "^1.17.3",
"express-validator": "^6.15.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"shortid": "^2.2.16",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13"
}
}