-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "xprevalent",
"version": "1.0.4",
"description": "The next level library for creating express controllers",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"lint": "eslint src/**",
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MAE776569/xprevalent.git"
},
"keywords": [
"express",
"controller",
"router",
"mongodb"
],
"author": "Mohamed Ahmed <mohamed5qabeel@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAE776569/xprevalent/issues"
},
"homepage": "https://github.com/MAE776569/xprevalent#readme",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.169",
"@types/mongoose": "^5.10.3",
"@types/yup": "^0.29.13",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"lodash": "^4.17.21",
"yup": "^0.32.11"
},
"types": "./dist/index.d.ts"
}