-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.45 KB
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": "nastreamer",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "export NODE_ENV=production; node server.js",
"deploy": "pm2 kill; next build; export NODE_ENV=production; pm2 start server.js",
"rundb": "mongod --dbpath $HOME/mongodb/data/db --quiet"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"axios": "^0.18.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.3",
"eslint": "^5.8.0",
"eslint-config-airbnb": "^17.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.3.0",
"mongoose": "^4.10.4",
"multer": "^1.4.1",
"next": "^7.0.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-dropzone": "^7.0.1",
"react-icons": "^3.2.2",
"react-loading": "^2.0.3",
"react-redux": "^5.1.0",
"react-sidebar": "^3.0.2",
"react-toastify": "^4.4.3",
"reactstrap": "^6.5.0",
"redux-actions": "^2.6.3",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"socket.io": "^2.1.1",
"socket.io-client": "^2.1.1",
"validator": "^10.9.0",
"video-react": "^0.13.0"
},
"devDependencies": {
"prettier-eslint": "^8.8.2"
}
}