-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 2.96 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "ireporter",
"version": "1.0.0",
"description": "iReporter app enables users (citizen) to bring any form of corruption to the notice of appropriate authorities and the general public",
"private": true,
"main": "build/bin/www.js",
"config": {
"port": "3000"
},
"scripts": {
"build": "babel src -d build",
"clean": "rimraf build",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"db": "npm run db:init -- src/database/migrations/index.js",
"db:init": "node -r @babel/register -r ./src/database/init.js",
"db:seed": "npm run db:init -- src/database/seeds/index.js",
"dev": "node -r dotenv/config -r @babel/register src/bin/www.js",
"gh:deploy": "gh-pages -d UI",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm run build",
"lint": "eslint src/",
"migrate": "npm run db -- migrate",
"migrate:reset": "npm run db -- reset",
"migrate:refresh": "npm run db:reset && npm run db:migrate",
"mocha": "mocha",
"mocha:watch": "npm run mocha -- -w",
"prebuild": "npm run clean",
"preserve": "npm run build",
"serve": "npm run start -- -r dotenv/config",
"start": "node build/bin/www.js",
"test": "nyc --reporter=html --reporter=text --reporter=lcov mocha",
"watch": "nodemon --exec npm run dev"
},
"keywords": [
"reports",
"corruption",
"intervention",
"red flag",
"citizens"
],
"author": "Harry Dbrandy",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"cleave.js": "^1.4.7",
"cloudinary-core": "^2.5.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^6.2.0",
"express": "~4.16.0",
"express-promise-router": "^3.0.3",
"express-validator": "^5.3.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"jsonwebtoken": "^8.4.0",
"make-runnable": "^1.3.6",
"mocker-data-generator": "^2.6.6",
"morgan": "~1.9.0",
"pg": "^7.7.1",
"postgres-migrations": "^2.0.3",
"underscore": "^1.9.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.1.6",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.1.6",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"editorconfig": "^0.15.2",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"faker": "^4.1.0",
"gh-pages": "^2.0.1",
"mocha": "^5.2.0",
"mocha-eslint": "^5.0.0",
"mocha-prepare": "^0.1.0",
"nodemon": "^1.18.7",
"npm-run-all": "^4.1.5",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"sinon": "^7.1.1",
"supertest": "^3.3.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"engines": {
"node": "10.x"
},
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"UI/*",
"uploads/*",
"public/*",
"resources/*",
"dist/*",
"build/*"
]
}
}