-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1005 Bytes
/
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
{
"name": "mern-asssessment",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "babel-node ./bin/www",
"populate": "babel-node ./migrations/populate.js",
"test": "jest",
"heroku-postbuild": "cd client && yarn && yarn build"
},
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.1",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"@babel/register": "^7.10.1",
"@babel/runtime": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.10.1",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"csvtojson": "^2.0.10",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jest": "^26.0.1",
"mongodb": "^3.5.8",
"mongoose": "^5.9.16",
"morgan": "~1.9.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
},
"devDependencies": {
"mongodb-memory-server": "^6.6.1"
}
}