-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 988 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 988 Bytes
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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"server": "node server.js",
"client": "cd client && npm run start",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "cd client && npm run build",
"deploy": "yarn build && git add . && git commit -m \"Building for production\" && git push heroku master",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.11.0",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.11.0"
},
"dependencies": {
"auth0-js": "^8.11.3",
"auth0-lock": "^10.24.1",
"axios": "^0.17.1",
"boron": "^0.2.3",
"express": "^4.15.4",
"material-ui": "^0.19.4",
"moment": "^2.19.3",
"mongoose": "^4.13.4",
"react-bootstrap": "^0.31.5",
"socket.io": "^2.0.4",
"styled-components": "^2.2.3"
}
}