-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
{
"name": "refreshments",
"version": "1.0.0",
"description": "Food Delvery Application for large restaurants with presence everywhere",
"main": "index.js",
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"prod": "npm-run-all build prod-server",
"server": "npm run dev-server",
"createTables": "babel-node src/helpers/db/createTables.js",
"dropTables": "babel-node src/helpers/db/dropTables.js",
"prod-server": "cross-env NODE_ENV=production node ./dist-src/index",
"dev-server": "cross-env NODE_ENV=development nodemon --exec babel-node ./src/index",
"test": "cross-env NODE_ENV=test nyc ./node_modules/.bin/mocha --require @babel/register src/test/* --timeout=10000 --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"transpile": "babel ./src --out-dir dist-src",
"clean": "rimraf dist-src",
"stop-win": "Taskkill /IM node.exe /F"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Johnpaul-Attamah/refreshments.git"
},
"reporter": [
"lcov",
"text"
],
"keywords": [
"fooddelivery",
"fastfood",
"food",
"ecommerce",
"mernstack",
"reactandredux",
"reactredux"
],
"author": "Johnpaul Attamah",
"license": "ISC",
"bugs": {
"url": "https://github.com/Johnpaul-Attamah/refreshments/issues"
},
"homepage": "https://github.com/Johnpaul-Attamah/refreshments#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.7.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.7",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.23.0",
"cross-env": "^6.0.3",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"gravatar": "^1.8.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"multer": "^1.4.2",
"pg": "^7.12.1",
"validator": "^11.1.0"
}
}