-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "i-reporter",
"version": "1.0.0",
"description": "",
"engines": {
"node": "10.x"
},
"main": "index.js",
"scripts": {
"pretest": "cross-env NODE_ENV=Test npm run migrate",
"test": "cross-env NODE_ENV=Test nyc mocha -r @babel/register --exit --timeout 20000",
"clean": "rm -rf dist && mkdir dist",
"build": "npm run clean && babel server -d dist",
"start": "npm run build && node dist/index",
"migrate": "node dist/models/tables.js",
"coverage": "nyc reporter=lcov --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boscoseries/iReporter.git"
},
"author": "Johnbosco Okoror",
"license": "ISC",
"bugs": {
"url": "https://github.com/boscoseries/iReporter/issues"
},
"homepage": "https://github.com/boscoseries/iReporter#readme",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"ghooks": "^2.0.4",
"joi": "^14.3.0",
"jsonwebtoken": "^8.4.0",
"path": "^0.12.7",
"pg": "^7.7.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/register": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"install": "^0.12.2",
"mocha": "^5.2.0",
"npm": "^6.7.0",
"nyc": "^13.1.0"
}
}