-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
61 lines (61 loc) · 1.91 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
{
"name": "transport-booking-backend-api",
"version": "1.0.0",
"description": "public bus transportation booking API - Such that Clients book tickets for their trips, can see all their bookings and have the right to cancel any booking they do not want to use again",
"main": "server.js",
"directories": {
"test": "test"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^7.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.6",
"moment": "^2.24.0",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pg": "^7.17.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"babel-plugin-istanbul": "^5.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^7.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"coveralls": "^3.0.4",
"eslint": "6.0.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "2.18.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"superagent": "^5.1.0",
"supertest": "^4.0.2"
},
"scripts": {
"test": "mocha --require babel-core/register ./test/**/*.js --timeout 10000",
"create-dev-tables": "babel-node ./app/db/dev/dbConnection createAllTables",
"seed-user-table": "babel-node ./app/helpers/seed seedUser",
"start": "nodemon --watch . --exec babel-node -- server",
"setup": "npm-run-all -p start create-dev-tables"
},
"author": "Blessing Krofegha",
"license": "ISC"
}