-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "knowrona",
"version": "1.0.0",
"description": "A quiz to test the person's knowledge about coronavirus!",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"npm run server \" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cnsplit/knowrona.git"
},
"keywords": [
"corona",
"quiz",
"knowledge",
"medicine"
],
"author": "CNSplit Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/cnsplit/knowrona/issues"
},
"homepage": "https://github.com/cnsplit/knowrona#readme",
"dependencies": {
"async": "^3.2.0",
"axios": "^0.20.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.3.0",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-sslify": "^1.2.0",
"flash": "^1.1.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"mongoose": "^5.10.5",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local-mongoose": "^6.0.1",
"password-validator": "^5.1.0",
"path": "^0.12.7",
"validator": "^13.1.17"
}
}