-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 2.08 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
{
"name": "ride-my-way",
"version": "1.0.0",
"description": "Ride-My-Way is a carpooling application that provides drivers with the ability to create ride offers and passengers to join available ride offers.",
"main": "app.js",
"scripts": {
"postinstall": "npm run build",
"prebuild": "rimraf dist",
"build": "babel server -d dist",
"start": "npm run build && node dist/app.js",
"start:dev": "cross-env NODE_ENV=development nodemon server/app.js --exec babel-node",
"lint": "./node_modules/.bin/eslint server --fix",
"test": "cross-env NODE_ENV=test nyc mocha --timeout 15000 --require babel-register --require babel-polyfill server/test/* --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"pg": "cross-env NODE_ENV=development nodemon server/db/index.js --exec babel-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lauragift21/Ride-My-Way.git"
},
"author": "Egwuenu Gift <[email protected]> (https://giftegwuenu.com/)",
"license": "MIT",
"private": true,
"bugs": {
"url": "https://github.com/lauragift21/Ride-My-Way/issues"
},
"homepage": "https://github.com/lauragift21/Ride-My-Way#readme",
"dependencies": {
"@babel/node": "^7.0.0-beta.51",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.7.0",
"babel-register": "^6.26.0",
"bcrypt": "^2.0.1",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "4.16.3",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"pg": "^7.4.3",
"rimraf": "2.6.2"
},
"devDependencies": {
"chai": "4.1.2",
"chai-http": "^4.0.0",
"codeclimate-test-reporter": "^0.5.0",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.12.0",
"mocha": "5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"supertest": "^3.1.0"
}
}