-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "itfest-api",
"version": "1.0.0",
"description": "API used for Arkavidia IT Festival",
"main": "index.js",
"scripts": {
"prepare": "cp .env.example .env",
"start": "node app.js",
"mongo:rs": "run-rs -v 4.0.0 --keep --shell"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkavidia5/itfest-api.git"
},
"author": "arkavidia",
"license": "ISC",
"bugs": {
"url": "https://github.com/arkavidia5/itfest-api/issues"
},
"homepage": "https://github.com/arkavidia5/itfest-api#readme",
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.1.10",
"morgan": "^1.9.1",
"pg": "^7.6.1",
"session-file-store": "^1.2.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"run-rs": "^0.4.0"
}
}