-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "online-judge-backend",
"version": "1.0.0",
"description": "[](https://online-judge.readthedocs.io/en/latest/?badge=latest)",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./Models ./Routes ./utils ./*.js",
"server": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cyber-Labs/online-judge.git"
},
"author": "Cyber Labs",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cyber-Labs/online-judge/issues"
},
"homepage": "https://github.com/Cyber-Labs/online-judge#readme",
"dependencies": {
"ajv": "^6.10.2",
"ajv-errors": "^1.0.1",
"bcryptjs": "^2.4.3",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"mysql": "^2.17.1",
"nodemailer": "^6.3.0",
"otplib": "^11.0.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.19.1",
"prettier": "1.18.2"
}
}