-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
78 lines (78 loc) · 2.55 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
{
"name": "meal-booking-app",
"version": "1.0.0",
"description": "Meal Booking Ecommerce App",
"main": "api/index.js",
"scripts": {
"start": "node ./build/index.js",
"client": "cd client && npm start",
"dev": "nodemon --exec babel-node api/index.js",
"test": "nyc mocha -r esm --recursive -t 5000 --exit",
"build-server": "npm run clean && npm run build-babel",
"create-client-env": "cat ./client/.env.heroku >> ./client/.env",
"build-client": "cd ./client && npm install && npm run build",
"build": "npm run build-server && npm run create-client-env && npm run build-client",
"clean": "rm -rf build && mkdir build",
"build-babel": "babel -d ./build ./api -s --copy-files",
"generate-lcov": "nyc report --reporter=text-lcov > lcov.info",
"coveralls-coverage": "coveralls < lcov.info",
"codeclimate-coverage": "codeclimate-test-reporter < lcov.info",
"coverage": "nyc npm test && npm run generate-lcov && npm run coveralls-coverage && npm run codeclimate-coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timzprof/book-a-meal.git"
},
"author": "Timilehin Olumofin",
"license": "ISC",
"bugs": {
"url": "https://github.com/timzprof/book-a-meal/issues"
},
"homepage": "https://github.com/timzprof/book-a-meal#readme",
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cron": "^1.8.2",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-favicon": "2.0.1",
"express-fileupload": "^1.1.6",
"helmet": "^3.22.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"morgan": "1.9.1",
"pg": "^8.8.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.23.0",
"swagger-ui-express": "^4.1.4",
"trim-request": "^1.0.6",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.0.11",
"eslint": "5.12.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-fs": "^4.11.0",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"prettier": "^1.19.1"
}
}