-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.56 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
{
"name": "teamwork",
"version": "1.0.0",
"description": "Teamwork is an internal social network for employees of an organisation. The goal of this application is to facilitate more interaction between colleagues and promote team bonding.",
"main": "index.js",
"scripts": {
"test": "mocha server/src/tests/*.js --require @babel/register --timeout 50000 --exit || true",
"start": "nodemon --exec babel-node server/src/index.js",
"babel-build": "babel server/src -d server/dist && node server/dist/index",
"clean": "rm -rf server/dist",
"build": "npm run clean && npm run babel-build",
"generate-lcov": "nyc report --reporter=text-lcov > lcov.info",
"heroku-postbuild": "echo skip post-build",
"up": "babel-node server/src/models/migrations/up",
"down": "babel-node server/src/models/migrations/down",
"seed": "babel-node server/src/models/migrations/seed",
"migrations": "npm run down && npm run up && npm run seed",
"coveralls-coverage": "coveralls < lcov.info",
"codeclimate-coverage": "codeclimate-test-reporter < lcov.info",
"coverage": "nyc npm run test && npm run generate-lcov && npm run coveralls-coverage && npm run codeclimate-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/an-apluss/teamwork.git"
},
"keywords": [
"social",
"network",
"employee",
"interaction",
"article",
"gif",
"cloudinary"
],
"author": "an-apluss",
"license": "MIT",
"bugs": {
"url": "https://github.com/an-apluss/teamwork/issues"
},
"homepage": "https://github.com/an-apluss/teamwork#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.7",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.0",
"nyc": "^14.1.1",
"prettier": "^1.17.1"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/polyfill": "^7.7.0",
"@babel/preset-env": "^7.4.5",
"@babel/register": "^7.4.4",
"@hapi/joi": "^16.1.7",
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.16.0",
"dotenv": "^7.0.0",
"express": "^4.17.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^7.12.1"
}
}