-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.72 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
{
"name": "meal-booking-app",
"version": "1.0.0",
"description": "",
"main": "API/app.js",
"scripts": {
"test": "nyc mocha -r esm --recursive API/test -t 5000 --exit",
"dev": "nodemon --exec babel-node API/app.js",
"start": "node API/build/app.js",
"build-babel": "babel ./ --out-dir build/ --ignore ./node_modules,./coverage,./.babelrc,./package.json,./.travis.yml,./.eslintrc.js,./UI,./README.md",
"clean": "rm -rf && mkdir build",
"build": "npm run clean && npm run build-babel",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test-coverage": "nyc report --reporter=text-lcov | codeclimate-test-reporter"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tomesyy/Andela-meal-application.git"
},
"author": "Tomesyy",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tomesyy/Andela-meal-application/issues"
},
"homepage": "https://github.com/Tomesyy/Andela-meal-application#readme",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/node": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"esm": "^3.2.15",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.0",
"pg": "^7.8.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.43.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.3",
"eslint": "^5.14.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"mocha": "^6.0.1",
"mock-fs": "^4.8.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0"
}
}