forked from agrawal-d/online-judge-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "backend",
"version": "0.0.0",
"private": true,
"scripts": {
"prebuild": "rm -rf build",
"build": "npx tsc",
"start": "node ./bin/www",
"pretty": "npx prettier --write .",
"dev": "npx tsc-watch --onSuccess \"./bin/www\"",
"lint": "eslint src"
},
"dependencies": {
"@typegoose/typegoose": "^7.4.8",
"axios": "^0.21.1",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.1",
"express-validator": "^6.9.2",
"mongoose": "5.10.18",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"request": "^2.88.2",
"swagger-jsdoc": "^6.0.4",
"swagger-ui-express": "^4.1.6",
"tsc-watch": "^4.2.9",
"typescript": "^4.1.5"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.25",
"@types/passport": "^1.0.6",
"@types/passport-google-oauth": "^1.0.41",
"@types/request": "^2.48.5",
"@types/swagger-jsdoc": "^6.0.0",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"prettier": "2.2.1"
}
}