forked from saidmattar/cloud-life-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "cloudlife",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/saidmattar/cloud-life-backend.git",
"author": "Michelle,Said,Isaac",
"license": "MIT",
"jest": {
"verbose": true,
"testEnvironment": "node",
"setupFiles": [
"<rootDir>/__test__/lib/test.env.js"
],
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 10,
"lines": 10,
"statements": 10
}
}
},
"scripts": {
"start": "node index.js",
"start:watch": "nodemon index.js",
"start:debug": "DEBUG=http* nodemon index.js",
"test": "jest --runInBand",
"test:watch": "jest --watchAll",
"lint": "eslint .",
"lint:test": "npm run lint && npm test"
},
"dependencies": {
"aws-sdk": "^2.139.0",
"aws-sdk-mock": "^1.7.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"faker": "^4.1.0",
"fs-extra": "^4.0.0",
"http-errors": "^1.6.1",
"json-parser": "^1.1.5",
"jsonwebtoken": "^7.4.1",
"mongoose": "^4.12.4",
"morgan": "^1.8.2",
"multer": "^1.3.0",
"nodemon": "^1.11.0",
"ramda": "^0.24.1",
"webpack": "^3.4.1"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"jest": "^20.0.4",
"superagent": "^3.5.2"
}
}