-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.25 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.25 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
{
"name": "api_teamwork",
"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": "server.js",
"scripts": {
"lint": "eslint .",
"pretest": "cross-env-shell NODE_ENV=test node api/v1/models/index createAllTables",
"test": "cross-env-shell NODE_ENV=test nyc --reporter=text mocha ./api/v1/test/a_user.spec.js ./api/v1/test/b_category.spec.js ./api/v1/test/c_article.spec.js ./api/v1/test/d_gif.spec.js api/v1/test/e_comment.spec.js api/v1/test/e_flag.spec.js api/v1/test/e_comment.spec.js api/v1/test/f_feed.spec.js --timeout 50000 --exit",
"test:coverage": "nyc report --reporter=lcov",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"coverage": "npm run test:coveralls && npm run test:coverage",
"start": "node ./api/server.js",
"dev-server": "nodemon ./api/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/odinaka-joy/api_teamwork.git"
},
"keywords": [
"Collaboration",
"Socialization",
"Teamwork"
],
"author": "Odinaka Joy",
"license": "MIT",
"bugs": {
"url": "https://github.com/odinaka-joy/api_teamwork/issues"
},
"homepage": "https://github.com/odinaka-joy/api_teamwork#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cloudinary": "^1.16.0",
"connect-multiparty": "^2.2.0",
"cors": "^2.8.5",
"datauri": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6-alpha.6",
"express-validator": "^6.2.0",
"helmet": "^3.21.2",
"hpp": "^0.2.2",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"multer": "^1.4.2",
"path": "^0.12.7",
"pg": "^7.12.1",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codeclimate-test-reporter": "^0.5.1",
"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",
"nodemon": "^1.19.4",
"nyc": "^14.1.1"
}
}