forked from felicity-buzz-2k16/quiz-portal-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 865 Bytes
/
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
{
"name": "quiz-portal-backend",
"version": "1.0.0",
"description": "The generic quiz portal's backend",
"main": "src/index.js",
"scripts": {
"start": "nodemon .",
"lint": "eslint src/",
"prod": "NODE_ENV=production nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Megh Parikh <[email protected]> (http://meghprkh.github.io)",
"repository": "meghprkh/express-auth-starter",
"private": true,
"license": "ISC",
"dependencies": {
"bcrypt": "^0.8.7",
"body-parser": "^1.15.1",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"express": "^4.13.4",
"express-history-api-fallback": "^2.0.0",
"jsonwebtoken": "^7.0.0",
"morgan": "^1.7.0",
"sequelize": "^3.23.3",
"sqlite3": "^3.1.4"
},
"devDependencies": {
"eslint": "^2.13.1",
"nodemon": "^1.9.2"
}
}