-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.09 KB
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
{
"name": "andelamf",
"version": "1.0.0",
"description": "WayFarer is a public bus transportation booking server. You are required to develop the back-end API.",
"main": "index.js",
"scripts": {
"build": "babel server --out-dir dist",
"start": "node dist/index.js",
"test": "npm run refresh && nyc mocha --timeout 5000 -r @babel/register server/test --exit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coveralls": "nyc --reporter=lcov --reporter=text-lcov npm test",
"start:dev": "nodemon --exec babel-node server/index.js",
"heroku-postbuild": "npm run build",
"refresh": "babel-node ./server/db/migration dropTables && babel-node ./server/db/migration createTables && babel-node ./server/db/seed seedTables"
},
"engines": {
"node": "12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielufeli/andelamf.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielufeli/andelamf/issues"
},
"homepage": "https://github.com/danielufeli/andelamf#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/preset-env": "^7.14.1",
"@babel/register": "^7.4.4",
"babel-preset-airbnb": "^4.5.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^2.0.7",
"nyc": "^14.1.1"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/runtime": "^7.14.0",
"@hapi/joi": "^15.1.1",
"airbnb-browser-shims": "^3.3.0",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"make-runnable": "^1.3.8",
"moment": "^2.29.1",
"morgan": "^1.10.0",
"pg": "^7.18.2",
"swagger-jsdoc": "^3.7.0",
"swagger-ui-express": "^4.1.6"
}
}