-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "mern",
"version": "1.0.0",
"description": "Mern Demo",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "./node_modules/.bin/concurrently \"./node_modules/.bin/nodemon\" \"(cd client && yarn run start)\"",
"postinstall": "(cd client && yarn install && yarn run build)",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.14.11"
},
"dependencies": {
"auth0-js": "^9.1.0",
"axios": "^0.17.1",
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"express": "^4.16.2",
"moment-timezone": "^0.5.14",
"mongoose": "^4.13.9",
"react-day-picker": "^7.0.7",
"react-dazzle": "^1.2.7",
"react-moment": "^0.7.0",
"request": "^2.83.0",
"request-promise": "^4.2.2"
}
}