-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "teamwork",
"version": "1.0.0",
"description": "Andela Developer Challenge",
"main": "src/index.js",
"scripts": {
"build": "babel src -s -d dist",
"start": "node dist/index.js",
"dev": "env-cmd -f .env nodemon --exec babel-node src/index.js",
"test": "jest src/tests/*.test.js",
"coverage": "jest --coverage",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwizeraelvis/teamwork.git"
},
"keywords": [
"node",
"express",
"api",
"rest"
],
"author": "Kwizera Aime Elvis",
"license": "MIT",
"bugs": {
"url": "https://github.com/kwizeraelvis/teamwork/issues"
},
"homepage": "https://github.com/kwizeraelvis/teamwork#readme",
"devDependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"babel-jest": "^24.9.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"jest-extended": "^0.11.2",
"mocha": "^6.2.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"winston": "^3.2.1"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@hapi/joi": "^16.1.8",
"bcrypt": "^3.0.6",
"dotenv": "^8.1.0",
"env-cmd": "^10.0.1",
"express": "^4.17.1",
"faker": "^4.1.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"uuidv4": "^5.0.1",
"codecov": "^3.7.1",
"coveralls": "^3.1.0",
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"morgan": "^1.9.1"
}
}