-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.16 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.16 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
66
67
68
{
"name": "politico-app",
"version": "1.0.0",
"description": "An Andela bootcamp project",
"main": "app.js",
"scripts": {
"start": "babel-node app.js",
"start:dev": "nodemon --watch server --exec babel-node -- app.js",
"test": "nyc --reporter=lcov --reporter=text mocha --timeout 5000 --exit --compilers js:babel-core/register server/specs/*test.js || true",
"build": "babel server -d server/dist --copy-files --ignore server/dist",
"postinstall": "npm run build",
"migrate": "babel-node server/models/databaseConnection",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"showcoverage": "start coverage/lcov-report/index.html",
"lint": "eslint --fix server/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PascalUlor/politico-app.git"
},
"author": "Ulor Pascal",
"license": "ISC",
"bugs": {
"url": "https://github.com/PascalUlor/politico-app/issues"
},
"homepage": "https://github.com/PascalUlor/politico-app#readme",
"devDependencies": {
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.15.0",
"nodemon": "^1.18.9"
},
"dependencies": {
"app-root-path": "^2.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cloudinary": "^1.13.2",
"cors": "^2.8.5",
"coveralls": "^3.0.2",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"express-fileupload": "^1.1.1-alpha.3",
"faker": "^4.1.0",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^5.1.1",
"nyc": "^13.1.0",
"pg": "^7.8.0",
"supertest": "^3.4.2",
"swagger-ui-express": "^4.0.2",
"validator": "^10.11.0",
"winston": "^3.1.0",
"yamljs": "^0.3.0"
}
}