-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.13 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
{
"name": "ride-my-way",
"version": "1.0.0",
"description": "Ride My Way APP API",
"main": "dist/app.js",
"scripts": {
"serve": "nodemon ./dist/app.js",
"test": "cross-env NODE_ENV=test --reporter=html --reporter=text mocha --compilers js:@babel/register src/test/* --exit",
"clean": "rimraf dist/",
"build:prepare": "npm run clean && mkdir dist",
"build": "babel src -d dist && babel --presets es2015 src -d dist --ignore ./src/test",
"dev": "nodemon --exec babel-node ./src/app.js",
"lint": "eslint ./ --fix",
"start": "npm run build:prepare && npm run build && npm run serve",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamuchejude/Ride-my-way.git"
},
"keywords": [
"API",
"Restful",
"Data",
"JSON"
],
"author": "Uche Jude",
"license": "MIT",
"bugs": {
"url": "https://github.com/iamuchejude/Ride-my-way/issues"
},
"homepage": "https://github.com/iamuchejude/Ride-my-way#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"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.13.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"ng-faker": "^1.0.1",
"nyc": "^14.1.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/register": "^7.4.4",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"base": "^3.0.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"eslint-config-airbnb": "^17.0.0",
"express": "^4.16.3",
"fancy-log": "^1.3.2",
"jsonwebtoken": "^8.3.0",
"morgan": "^1.9.1",
"multer": "^1.3.1",
"nodemon": "^1.17.5",
"pg": "^7.4.3",
"pino": "^4.17.3",
"randomstring": "^1.1.5",
"sequelize": "^5.8.5",
"sequelize-cli": "^5.4.0",
"uuid": "^3.3.0"
}
}