-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.8 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
47
48
49
50
51
52
53
54
55
{
"name": "workast-challenge",
"version": "1.0.0",
"description": "RESTful API that would allow an application to manage users and articles",
"main": "src/index.js",
"author": "Federico Cano <canofedericomartin@gmail.com>",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"http": "^0.0.0",
"lodash": "^4.17.11",
"mongoose": "^5.4.15",
"mongoose-paginate": "^5.0.3",
"mongoose-timestamp": "^0.6.0",
"swagger-ui-express": "^4.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.1",
"@types/jest": "^24.0.6",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^6.0.2",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"sinon": "^7.2.5"
},
"scripts": {
"start": "nodemon --exec babel-node src/index.js",
"test": "mocha --require @babel/register --require @babel/polyfill --recursive 'src/**/**/*.js' --exit",
"test:coverage": "nyc --reporter=html mocha --require @babel/register --require @babel/polyfill --recursive 'src/**/**/*.js' --exit"
}
}