-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "ctf-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"dev": "nodemon src/app.js",
"start": "node src/app.js"
},
"jest": {
"testEnvironment": "node"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"chalk": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ip": "^1.0.4",
"express-rate-limit": "^5.1.3",
"firebase-admin": "^8.9.2",
"google-recaptcha": "^1.1.0",
"helmet": "^4.1.1",
"nodemon": "^2.0.2",
"recaptcha-verify": "^0.1.1",
"uniqid": "^5.2.0",
"validator": "^12.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamuv2000/CTF-Backend.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/iamuv2000/CTF-Backend/issues"
},
"homepage": "https://github.com/iamuv2000/CTF-Backend#readme",
"description": "",
"devDependencies": {
"jest": "^26.0.1",
"supertest": "^4.0.2"
}
}