-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 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
{
"name": "webapiback",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start": "node_modules/.bin/nodemon app.js --exec babel-node --",
"test": "nyc mocha --compilers js:@babel/register tests/*.js --timeout 100000",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julescournut/WebAPIBack.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/julescournut/WebAPIBack/issues"
},
"homepage": "https://github.com/julescournut/WebAPIBack#readme",
"dependencies": {
"@babel/runtime": "^7.3.1",
"body-parser": "^1.18.3",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"forever-monitor": "^1.7.1",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.0",
"multer": "^1.4.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"babel-cli": "^7.0.0-0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"codecov": "^3.2.0",
"mocha": "^5.2.0",
"mock-mongoose": "^7.4.0-r2",
"nock": "^10.0.6",
"nodemon": "^1.18.9",
"nyc": "^13.2.0"
}
}