-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
{
"name": "devc-teamwork-rest-api",
"version": "1.0.0",
"description": "A REST API for teamwork, a team collaboration application",
"main": "server.js",
"engines": {
"node": "10.16.3"
},
"scripts": {
"build": "babel src --out-dir build --delete-dir-on-start",
"lint": "eslint --fix \"src/**\" \"tests/**\" ",
"testdev": "npm run test && npm run dev",
"dev": "DEBUG=dev NODE_ENV=dev nodemon --exec babel-node ./src/server.js",
"start": "NODE_ENV=production node ./build/server.js",
"test": "NODE_ENV=test nyc --reporter=text mocha \"tests/**/*.test.js\"",
"test:nolint": "NODE_ENV=test nyc --reporter=text --reporter=html mocha \"tests/**/*.test.js\"",
"coverage": "nyc report --reporter=lcov --reporter=text-lcov | coveralls",
"pretest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dave-ok/devc-teamwork-rest-api.git"
},
"keywords": [
"devc",
"teamwork",
"rest-api"
],
"author": "David Okanlawon",
"license": "MIT",
"bugs": {
"url": "https://github.com/dave-ok/devc-teamwork-rest-api/issues"
},
"homepage": "https://github.com/dave-ok/devc-teamwork-rest-api#readme",
"dependencies": {
"@babel/runtime": "^7.7.2",
"bcrypt": "^3.0.6",
"cloudinary": "^1.16.0",
"cors": "^2.8.5",
"custom-env": "^1.0.2",
"debug": "^4.1.1",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-jwt-permissions": "^1.3.2",
"express-validator": "^6.3.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-storage-cloudinary": "^2.2.1",
"pg": "^7.12.1"
},
"eslintIgnore": [
"build/**"
],
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/node": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/register": "^7.7.0",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.7",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.2.1",
"mocha": "^6.2.2",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}