-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.68 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "teamwork-backend",
"version": "1.0.0",
"description": "Teamwork is an internal social network for employees of an organization. The goal of this application is to facilitate more interaction between colleagues and promote team bonding.",
"main": "index.js",
"scripts": {
"db:setup": "cross-env NODE_ENV=test npm run unmigrate && cross-env NODE_ENV=test npm run migrate && cross-env NODE_ENV=test npm run seed",
"test": "npm run db:setup && cross-env NODE_ENV=test nyc mocha --timeout 120000 src/test/** --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.js --exec babel-node",
"heroku-postbuild": "npm run clean && npm run build",
"build": "babel src --out-dir dist --copy-files",
"clean": "rm -rf dist && mkdir dist",
"migrate": "babel-node ./src/db/migrations/migrate createTables",
"unmigrate": "babel-node ./src/db/migrations/unmigrate dropTables",
"seed": "babel-node ./src/db/seeds/seeds seedTables"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dinorhythms/Teamwork-Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dinorhythms/Teamwork-Backend/issues"
},
"homepage": "https://github.com/dinorhythms/Teamwork-Backend#readme",
"dependencies": {
"@babel/runtime": "^7.7.1",
"@hapi/joi": "^15.1.1",
"bcrypt": "^3.0.6",
"cloudinary": "^1.16.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"morgan-body": "^2.4.8",
"multer": "^1.4.2",
"pg": "^7.12.1",
"pg-hstore": "^2.3.3",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2",
"trim-request-body": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/node": "^7.6.3",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.7",
"cross-env": "^6.0.3",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"mock-req-res": "^1.1.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0"
},
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text",
"html"
],
"exclude": [
"src/test/**"
],
"sourceMap": false,
"instrument": false
}
}