-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.35 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
{
"name": "server",
"version": "0.0.0",
"private": true,
"scripts": {
"clean": "rimraf ./dist/",
"build-babel": "babel ./server --out-dir ./dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log,./dist --copy-files",
"build": "npm run clean && npm run build-babel",
"start": "babel-node server/app.js",
"dev": "nodemon ./server/app.js --exec babel-node --presets babel-preset-env",
"test": "mocha ./server/test/**.spec.js --recursive --compilers js:babel-register --exit",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"posttest": "eslint --ignore-path .gitignore ."
},
"dependencies": {
"bcrypt": "^2.0.1",
"body-parser": "~1.17.1",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"commonjs": "0.0.1",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "^2.5.9",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"jade": "~1.11.0",
"jwt-simple": "^0.5.1",
"mocha": "^5.1.1",
"morgan": "~1.9.0",
"nyc": "^11.7.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"prettier": "^1.12.1",
"sequelize": "^4.37.6",
"serve-favicon": "~2.4.2"
},
"description": "Book-A-Meal App and it is an application that allows customers to make food orders and helps the food vendor know what the customers want to eat.",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/faksam/Book-A-Meal.git"
},
"author": "Fakunle Samuel",
"license": "ISC",
"bugs": {
"url": "https://github.com/faksam/Book-A-Meal/issues"
},
"homepage": "https://github.com/faksam/Book-A-Meal#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-airbnb": "^2.4.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.17.3",
"rimraf": "^2.6.2",
"sequelize-cli": "^4.0.0"
}
}