-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.25 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
{
"name": "wayfarer-v2",
"version": "1.0.0",
"description": "Andela challenge",
"main": "app.js",
"scripts": {
"dev": "nodemon --exec babel-node ./server/server.js",
"start": "babel-node ./server/server.js",
"test": "nyc --reporter=text --reporter=html mocha server/test --require @babel/polyfill --require @babel/register --timeout 10000 --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/T2Wil/WayFarer-v2.git"
},
"author": "T",
"license": "ISC",
"bugs": {
"url": "https://github.com/T2Wil/WayFarer-v2/issues"
},
"homepage": "https://github.com/T2Wil/WayFarer-v2#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^1.19.1",
"nyc": "^14.1.1"
},
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-preset-es2015": "^6.24.1",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.0"
}
}