-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (83 loc) · 2.78 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "teamwork",
"version": "1.0.0",
"description": "Teamwork is an internal social network for organizations’ employees. The goal of this application is to facilitate more interaction between colleagues and facilitate team bonding",
"main": "database/server/src/app.js",
"scripts": {
"build": "NODE_ENV=dev babel database/server/src -d database/server/dist",
"start": "NODE_ENV=dev yarn build && NODE_ENV=dev nodemon database/server/dist/server.js",
"table:create": "NODE_ENV=test node --require @babel/register database/server/src/db/tablesCreate.js",
"table:drop": "NODE_ENV=test node --require @babel/register database/server/src/db/tablesDrop.js",
"populate": "NODE_ENV=test node --require @babel/register database/server/src/db/testUser.js",
"dev": "DEBUG=app nodemon node server/dist/server.js",
"logs:prod": "heroku logs --tail",
"pretest": "yarn table:create && yarn populate",
"test": "NODE_ENV=test nyc --reporter=html mocha --require @babel/register database/server/test/* --timeout 10000 --exit",
"posttest": "yarn table:drop",
"test:local": "NODE_ENV=dev nyc --reporter=html mocha --require @babel/register database/server/test/* --timeout 10000 --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bam92/teamwork.git"
},
"engines": {
"node": "12.x"
},
"author": "Abel Lifaefi Mbula",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bam92/teamwork/issues"
},
"homepage": "https://github.com/Bam92/teamwork#readme",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.6.3",
"@hapi/joi": "^16.1.4",
"babel-plugin-istanbul": "^5.2.0",
"babel-polyfill": "^6.26.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chalk": "^2.4.2",
"coveralls": "^3.0.6",
"debug": "^4.1.1",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"pg": "^7.12.1",
"pg-format": "^1.0.4",
"swagger-ui-express": "^4.1.1",
"@babel/plugin-transform-runtime": "^7.6.2"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"mocha": "6.2.0",
"mocha-lcov-reporter": "1.3.0"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
"node_modules/**/node_moduels"
],
"delay": "2500"
},
"nyc": {
"exclude": [
"*/.spec.js",
"build",
"data-structure",
"database/server/dist"
]
}
}