-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.89 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
76
{
"name": "way-farer-backend",
"version": "1.0.0",
"description": "An online bus booking service",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"build": "npm run clean && babel src --out-dir dist",
"start": "cross-env NODE_ENV=production npm run build && node dist/index.js",
"test": "cross-env NODE_ENV=test jest --verbose --runInBand --detectOpenHandles",
"lint": "eslint .",
"clean": "rimraf dist/",
"audit:ci": "audit-ci --high --report-type full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/desirekaleba/way-farer-backend.git"
},
"keywords": [
"wayfarer",
"bus",
"booking",
"system"
],
"author": "Desire Kaleba",
"license": "MIT",
"bugs": {
"url": "https://github.com/desirekaleba/way-farer-backend/issues"
},
"homepage": "https://github.com/desirekaleba/way-farer-backend#readme",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"audit-ci": "^5.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.25.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"winston": "^3.3.3"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"src/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"dependencies": {
"bcryptjs": "^2.4.3",
"core-js": "^3.11.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-defaults": "^2.0.2",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"joi": "^17.4.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"regenerator-runtime": "^0.13.9"
},
"lint-staged": {
"*.ts": "eslint",
"*.js": "eslint"
}
}