-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.43 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.43 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
{
"name": "has-server",
"version": "1.0.0",
"description": "Express Server for Hire a Service App",
"main": "src/index.js",
"scripts": {
"start": "npm-run-all --parallel open:src lint:watch test:watch",
"open:src": "nodemon src/index.js --exec babel-node",
"test": "mocha --reporter progress buildScripts/testSetup.js \"src/**/*.test.js\"",
"test:watch": "npm run test -- --watch",
"lint": "esw src buildScripts --color",
"lint:watch": "npm run lint -- --watch"
},
"author": "Oche Onoja",
"license": "ISC",
"dependencies": {
"@sentry/node": "^5.5.0",
"africastalking": "^0.4.0",
"axios": "^0.20.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-register": "^6.26.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-watch": "^6.0.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.1.4",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"pg": "^7.10.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"eslint": "^6.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-watch": "^6.0.0",
"nyc": "^14.1.1"
}
}