-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "agora",
"version": "0.1.0",
"description": "An open forum for debates.",
"main": "server.js",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"bcrypt-nodejs": "^0.0.3",
"better-express-errors": "^1.0.2",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.2",
"express-session": "^1.15.6",
"http": "^0.0.0",
"jsonwebtoken": "^8.1.1",
"method-override": "^3.0.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.2",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"passport-twitter": "^1.0.4",
"socket.io": "^2.4.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"editorconfig": "^0.15.2",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"jsdoc": "^3.5.5",
"localtunnel": "^1.8.3",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-materialize": "^2.3.3",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"react-scripts": "^2.1.3",
"react-test-renderer": "^16.7.0",
"redux": "^4.0.0",
"redux-saga": "^0.16.0",
"standard": "^12.0.1"
},
"scripts": {
"separator": "echo \"********************************************\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"prestart": "echo \"Starting...\"",
"start": "node server.js",
"server": "npx nodemon server.js",
"react": "PORT=5000 react-scripts start",
"start-all": "npm-run-all -p server react",
"security": "yarn audit fix",
"localtunnel": "lt --port 8000",
"share": "npm-run-all -p start-all localtunnel",
"deploy": "git push origin master; yarn run separator; git push heroku master; yarn run separator",
"seed": "heroku run node db/seed.js; yarn run separator",
"presave": "yarn run build; yarn run separator",
"save": "git add .;git commit",
"postsave": "yarn run separator; yarn run deploy; yarn run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maikelnabil/agora.git"
},
"keywords": [],
"author": "Mike Nabil",
"license": "MIT",
"bugs": {
"url": "https://github.com/maikelnabil/agora/issues"
},
"homepage": "http://agora.mikenabil.net/",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}