-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.9 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
{
"name": "typescript-express-mongo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npx tsc -w",
"dev": "npx nodemon",
"build": "tsc",
"format": "prettier --write .",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint --ext ts --ext tsx --ext js .",
"eslint-fix": "eslint --fix --ext ts --ext tsx --ext js .",
"test": "jest --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged ng lint ng test",
"pre-push": "ng build --aot true"
}
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config": "^0.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-standard": "^5.0.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.4.0",
"prettier": "3.3.2",
"pretty-quick": "^4.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.4.4",
"nodemon": "^3.1.3",
"pino": "^9.2.0",
"pino-pretty": "^11.2.1",
"uuid": "^10.0.0"
}
}