-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "decoress",
"version": "0.1.3",
"description": "a minimal package for decorating express controllers",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "husky install",
"clean": "npx rimraf lib/ types/",
"build": "npm run clean && npx tsc",
"prepublishOnly": "npm run test && npm run build ",
"format": "npx prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/dalmamad/decoress.git"
},
"tags": [
"decorators",
"express",
"express.js",
"typescript",
"typescript-express",
"typescript-express.js",
"express-controllers",
"controllers"
],
"author": "dalmamad",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"express": "^4.18.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"nodemon": "^2.0.21",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"npx eslint --fix"
]
},
"files": [
"lib/**/*",
"types/**/*",
"README.md"
]
}