forked from rohitdwivedula/mern-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "movie-crud",
"version": "1.0.0",
"engines": {
"node": "12.14.1"
},
"description": "MERN CRUD app for movies",
"main": "index.js",
"scripts": {
"heroku-postbuild": "cd client && npm install && npm run build",
"start": "npm install && node server.js",
"test": "NODE_ENV=test mocha --exit test/**/*.js"
},
"keywords": [
"microservice"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chai-http": "^4.3.0",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"create-react-app": "^3.3.0",
"csv-parser": "^2.3.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"express-device": "^0.4.2",
"express-session": "^1.17.0",
"mongoose": "^5.8.9",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth-jwt": "^0.2.3",
"path": "^0.12.7"
},
"devDependencies": {
"chai": "^4.2.0",
"cypress": "^4.2.0",
"mocha": "^7.0.1",
"supertest": "^4.0.2"
}
}