This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·54 lines (54 loc) · 1.66 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": "quiz_app",
"version": "1.0.0",
"description": "A multiplayer online quiz game",
"author": "Mudasar Ahmad",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/mudasar187/WebAssignment_Exam2018.git"
},
"dependencies": {
"axios": "^0.17.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"connect-mongo": "^2.0.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"immutable": "^3.8.2",
"jsonwebtoken": "^8.3.0",
"lodash": "^4.17.4",
"moment": "^2.19.2",
"mongoose": "^5.0.2",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport.socketio": "^3.7.0",
"react": "^16.1.1",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.1.1",
"react-redux": "^5.0.5",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.7",
"react-scripts": "1.0.17",
"redux": "^4.0.0",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"ws": "^6.1.0"
},
"scripts": {
"start-dev": "NODE_ENV=development PORT=8080 react-scripts start",
"build-prod": "NODE_ENV=production react-scripts build",
"api-dev": "NODE_ENV=development nodemon ./server/server.js",
"api-prod": "NODE_ENV=production nodemon ./server/server.js",
"api-docker": "NODE_ENV=docker nodemon ./server/server.js",
"api-local": "NODE_ENV=local nodemon ./server/server.js",
"mlab-dev": "concurrently \"npm run start-dev\" \"npm run api-dev\"",
"local-dev": "concurrently \"npm run start-dev\" \"npm run api-local\""
},
"devDependencies": {
"concurrently": "^3.5.1",
"nodemon": "^1.17.5"
},
"proxy": "http://localhost:3000"
}