-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 917 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 917 Bytes
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": "crud-bootstrap",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"scripts": {
"start": "nodemon --exec babel-node src/App.js",
"lint": "./node_modules/.bin/eslint --fix src/",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0-beta.55",
"@babel/node": "^7.0.0-beta.55",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-3": "^6.24.1",
"body-parser": "^1.18.3",
"eslint": "^5.2.0",
"jest": "^23.4.2",
"nodemon": "^1.18.3",
"regenerator-runtime": "^0.12.0"
},
"dependencies": {
"express": "^4.16.3",
"mongoose": "^5.2.6"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js}"
],
"testURL": "http://localhost/",
"verbose": true
}
}