-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.63 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.63 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
{
"name": "taskforceapi",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node --require @babel/polyfill --require @babel/register ./server/server.js ",
"build": "babel server/server.js --out-dir build",
"dev-start": "babel-watch server/server.js",
"test": "nyc mocha server/test --require @babel/polyfill --require @babel/register --timeout 40000 --exit",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls",
"showCoverage": "start coverage/server/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kimenyikevin/TaskForceAPI.git"
},
"author": "kevin kimenyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kimenyikevin/TaskForceAPI/issues"
},
"homepage": "https://github.com/kimenyikevin/TaskForceAPI#readme",
"dependencies": {
"@babel/cli": "^7.8.0",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/register": "^7.7.7",
"@hapi/joi": "^15.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.9",
"coverage": "^0.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"idempotent-babel-polyfill": "^7.4.4",
"jsonwebtoken": "^8.5.1",
"mocha": "^7.0.0",
"nodemailer": "^6.4.2",
"nyc": "^15.0.0",
"pg": "^7.17.0",
"swagger-node-express": "^2.1.3",
"swagger-tools": "^0.10.4",
"swagger-ui": "^3.23.9",
"swagger-ui-express": "^4.0.7"
},
"devDependencies": {
"babel-watch": "^7.0.0"
}
}