-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hackton-backend",
"version": "1.0.0",
"description": "This is a Lambda EU3 Labs project\r # hackton-server\r A comprehensive portal for hackathons where students can submit their work and judges can evaluate in one place",
"main": "index.js",
"scripts": {
"test": "cross-env DB_ENV=test jest --detectOpenHandles --testTimeout=20000 --coverage --runInBand --forceExit",
"start": "node index.js",
"server": "nodemon index.js",
"pretest": "knex migrate:rollback --env=test && knex migrate:latest --env=test",
"migrate": "knex migrate:latest",
"seed": "knex seed:run",
"unmigrate": "knex migrate:rollback",
"coverage": "npm test && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LABS-EU3/hackton-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LABS-EU3/hackton-backend/issues"
},
"homepage": "https://github.com/LABS-EU3/hackton-backend#readme",
"dependencies": {
"@sendgrid/mail": "^6.5.1",
"app-root-path": "^3.0.0",
"bcrypt": "3.0.6",
"cloudinary": "^1.19.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"knex": "^0.20.4",
"mailgen": "^2.0.10",
"moment": "^2.24.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"node-cron": "^2.0.3",
"nodemailer": "^6.4.2",
"passport": "^0.4.1",
"passport-github2": "^0.1.11",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^7.14.0",
"pg-types": "^3.0.0",
"prettier": "^1.19.1",
"validator": "^12.1.0",
"winston": "^3.2.1"
},
"devDependencies": {
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2"
}
}