-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
69 lines (69 loc) · 1.95 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
{
"name": "fast-food-fast",
"version": "1.0.0",
"engines": {
"node": "8.11.4"
},
"description": "A food delivery service app for a restaurant | Andela Developer Challenge",
"main": "./server/api/index.js",
"scripts": {
"lint": "eslint ./server --fix",
"pretest": "eslint --ignore-path .gitignore",
"test": "cross-env NODE_ENV=test nyc mocha --timeout=10000 --compilers js:babel-core/register --require should",
"start": "nodemon --exec babel-node ./server/api/index.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bobsar0/Fast-Food-Fast.git"
},
"keywords": [
"andela",
"restaurant",
"app"
],
"author": "Steve Onyeneke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bobsar0/Fast-Food-Fast/issues"
},
"homepage": "https://github.com/Bobsar0/Fast-Food-Fast#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"nodemailer": "^4.6.8",
"npm": "^6.4.1",
"pg": "^7.4.3",
"twilio": "^3.23.2",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-decorators": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.18.4",
"nyc": "^13.0.1",
"should": "^13.2.3",
"supertest": "^3.1.0"
}
}