-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.83 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.83 KB
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
47
48
49
50
51
52
{
"name": "delorean-rental-oloo-js",
"version": "1.0.0",
"description": "Implement the business logic of a Rent a car. Creation of an RESTfull-API connected to MongoAtlas, no relational DB, and implement Prototypal Object Linking of JavaScript, OLOO. Introduction to linked objects by prototypes with JS",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pau13-loop/DeLorean-Rental-OLOO-JS.git"
},
"author": "Pau Llinas Amat",
"license": "MIT",
"bugs": {
"url": "https://github.com/pau13-loop/DeLorean-Rental-OLOO-JS/issues"
},
"homepage": "https://github.com/pau13-loop/DeLorean-Rental-OLOO-JS#readme",
"scripts": {
"lint": "eslint src/*.js",
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "NODE_ENV=development npm run migrate && cross-env NODE_ENV=development DEBUG=rent_a_car:* npm run devstart",
"migrate": "node ./src/db/migrations/migration.js",
"pretest": "cross-env NODE_ENV=test npm run migrate",
"test": "cross-env NODE_ENV=test jest --runInBand --detectOpenHandles",
"pulltest": "cross-env NODE_ENV=test jest --runInBand",
"test-vanilla": "node ./src/db/migrations/migration.js && cross-env NODE_ENV=test jest --runInBand",
"coverage": "jest --coverage --runInBand",
"pre-commit": "npm run lint && npm test"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"debug": "^4.3.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"http-errors": "^1.8.1",
"jade": "^0.29.0",
"mongoose": "^6.1.3",
"morgan": "^1.10.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^8.3.0",
"jest": "^27.4.5",
"nodemon": "^2.0.15",
"supertest": "^6.1.6"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}