-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
45
46
{
"name": "mern-server",
"version": "1.0.0",
"description": "Server app made with React.js and Node.js for the Assembler School MERN Recipes App by @danilucaci.",
"private": true,
"author": "Dani Lucaci <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/assembler-school/mern-seed-recipes.git"
},
"keywords": [
"challenge",
"react.js",
"node.js"
],
"license": "MIT",
"main": "./src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --detectOpenHandles --runInBand --forceExit",
"test:watch": "jest --watch --detectOpenHandles --runInBand --forceExit",
"dev": "nodemon ./src/index.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^9.4.2",
"helmet": "^4.2.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"loglevel": "^1.7.1",
"mongoose": "^5.11.14",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"validator": "^13.5.2"
},
"devDependencies": {
"dotenv": "^8.2.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"mongodb-memory-server": "^6.9.3",
"supertest": "^6.0.1"
}
}