-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.34 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
77
78
79
80
81
82
{
"name": "justifier",
"version": "1.0.0",
"description": "Back End Assignment",
"repository": {
"type": "git",
"url": "https://github.com/3kezoh/justifier"
},
"main": "dist/bin/www.js",
"scripts": {
"build": "npm run lint && npm run docs && tsc ",
"build:watch": "tsc -w",
"dev": "nodemon",
"docs": "apidoc -i src -o docs",
"lint": "eslint \"**/*.{.js,ts}\" --quiet --fix",
"start": "node dist/bin/www.js",
"test": "jest --runInBand --coverage",
"test:watch": "jest --watch --runInBand --coverage --silent",
"prepare": "husky install"
},
"author": "Stanley CRICO",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"compression": "^1.7.4",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-validator": "^6.12.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongodb": "^3.6.11",
"mongoose": "^5.13.7",
"mongoose-lean-id": "^0.2.0",
"ms": "^2.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/compression": "^1.7.1",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/jsonwebtoken": "^8.5.4",
"@types/mongoose": "^5.11.97",
"@types/ms": "^0.7.31",
"@types/passport": "^1.0.7",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"apidoc": "^0.29.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lorem-ipsum": "^2.0.3",
"mockdate": "^3.0.5",
"nodemon": "^2.0.12",
"sinon": "^11.1.2",
"supertest": "^6.1.5",
"ts-jest": "^27.0.4",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
},
"_moduleAliases": {
"@components": "dist/components",
"@Auth": "dist/components/auth",
"@Text": "dist/components/text",
"@User": "dist/components/user",
"@bin": "dist/bin",
"@config": "dist/config",
"@lib": "dist/lib",
"@middlewares": "dist/middlewares",
"@utils": "dist/utils",
"@test": "dist/utils/test"
}
}