This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.66 KB
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": "fastfoodfast",
"version": "1.0.0",
"description": " a food delivery app for a restaurant",
"main": "index.js",
"scripts": {
"build": "babel server -d client",
"prebuild": "rm -rf client/*",
"start": "node ./client/index.js",
"prestart": "npm run-script build",
"prod-start": "nodemon server/index.js --exec babel-node",
"test": "set NODE_ENV=test&& npm run migrate && mocha --timeout 10000 server/ --recursive --compilers js:babel-register --exit",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"migrate": "babel-node server/models/schema.js",
"heroku-postbuild": "npm run migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ah-med/FastFoodFast.git"
},
"keywords": [
"node",
"express",
"food",
"delivery",
"fastfood"
],
"author": "Ahmed Omosanya",
"license": "ISC",
"bugs": {
"url": "https://github.com/ah-med/FastFoodFast/issues"
},
"homepage": "https://github.com/ah-med/FastFoodFast#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.2.0",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"joi": "^13.6.0",
"jsonwebtoken": "^8.3.0",
"pg": "^7.4.3",
"trim-request-body": "^1.0.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"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",
"nyc": "^13.0.1"
}
}