forked from Girl-Code-It/Opportunity-Calendar-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "opportunity-calendar-backend",
"version": "1.0.0",
"description": "Opportunity Calendar is the one-stop place to refer important opportunities available in tech-space like newly posted jobs, internships, hackathons, tech-conferences, scholarships etc.",
"main": "index.js",
"type": "module",
"scripts": {
"preinstall": "npx husky-init",
"prepare": "husky install",
"start": "node index.js",
"test": "mocha './tests/*/*'",
"start:dev": "nodemon –experimental-modules index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Manvityagi/Opportunity-Calendar-Backend.git"
},
"author": "ManviTyagi",
"license": "ISC",
"bugs": {
"url": "https://github.com/Manvityagi/Opportunity-Calendar-Backend/issues"
},
"homepage": "https://github.com/Manvityagi/Opportunity-Calendar-Backend#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cluster": "^0.7.7",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongoose": "^5.12.1",
"mongoose-type-url": "^2.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"swagger-jsdoc": "^6.0.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"chai": "^4.3.4",
"faker": "^5.5.2",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"sinon": "^10.0.0"
}
}