-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "telexam",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --exec ts-node --transpile-only src/index.ts",
"prepare": "husky install",
"format": "prettier --write",
"lint": "eslint --fix",
"lint:staged": "lint-staged",
"test:run": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "4.17.13",
"@types/jest": "27.0.2",
"@types/morgan": "1.9.3",
"@types/node": "16.10.3",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"lint-staged": "11.2.3",
"nodemon": "2.0.13",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"ts-node": "10.3.0",
"typescript": "4.4.4"
},
"dependencies": {
"@types/cors": "^2.8.12",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.6.0",
"jest": "^27.2.4",
"morgan": "^1.10.0"
},
"lint-staged": {
"*.{ts,js,html,json}": [
"prettier --write",
"eslint --fix"
]
}
}