-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.12 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": "retro-games-api",
"version": "0.1.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "cross-env NODE_ENV=test DEBUG=test,mongodb node node_modules/.bin/mocha ./tests/*.test.js --exit",
"start": "cross-env NODE_ENV=development DEBUG=mongodb,request,init,middleware node_modules/.bin/nodemon server.js",
"server": "cross-env NODE_ENV=production DEBUG=mongodb,request,init,middleware node server.js",
"lint": "node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SabrinaBarros/retro-games-api.git"
},
"author": "SabrinaBarros",
"license": "MIT",
"bugs": {
"url": "https://github.com/SabrinaBarros/retro-games-api/issues"
},
"homepage": "https://github.com/SabrinaBarros/retro-games-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.13.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"debug": "^4.3.2",
"eslint": "^7.32.0",
"mocha": "^9.0.3",
"nodemon": "^2.0.12"
}
}