This repository has been archived by the owner on Sep 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.58 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
{
"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": "app.js",
"scripts": {
"test": "NODE_ENV=test npm run droptables && NODE_ENV=test npm run createtables && NODE_ENV=test mocha --require @babel/polyfill --require @babel/register --timeout 10000 ./server/v2/test/ --exit || exit 0",
"build": "babel app.js --out-dir build",
"start": "npm run createtables && babel-node app.js",
"dev": "NODE_ENV=dev nodemon -r esm app.js babel-watch app.js",
"coverage": "nyc npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"droptables": "babel-node ./server/v2/services/dropTables.js",
"createtables": "babel-node ./server/v2/services/createTables.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebalu/teamwork.git"
},
"keywords": [],
"author": "Paul Sebalu",
"license": "ISC",
"bugs": {
"url": "https://github.com/sebalu/teamwork/issues"
},
"homepage": "https://github.com/sebalu/teamwork#readme",
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^6.4.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-node": "^4.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2"
},
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/polyfill": "^7.6.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"@hapi/joi": "^16.1.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"babel-upgrade": "^1.0.1",
"babel-watch": "^2.0.7",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"cors": "^2.8.5",
"coveralls": "^3.0.6",
"dotenv": "^8.1.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"istanbul": "^0.4.5",
"jest": "^24.9.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.15",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.24.0",
"nodemon": "^1.19.2",
"pg": "^7.12.1"
}
}