-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.11 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": "tanger-med-managment-node-ts",
"version": "1.0.0",
"main": "dist/app.js",
"repository": "git@github.com:othmanekahtal/tanger-med-managment-node-ts",
"author": "othmane <othmanekahtal@gmail.com>",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.2.0",
"helmet": "^5.0.2",
"hpp": "^0.2.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"morgan": "^1.10.0",
"nodemailer": "^6.7.2",
"slugify": "^1.6.5",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"tsc-alias": "^1.6.3",
"tsconfig-paths": "^3.12.0",
"validator": "^13.7.0",
"xss-clean": "^0.1.1"
},
"scripts": {
"test:watch": "jest --watchAll",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only src/app.ts",
"start": "node dist/app.js",
"lint": "eslint . --ext .ts",
"prepare": "husky install",
"check-types": "tsc --pretty --noEmit",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"prettier-write": "prettier --write .",
"check-format": "prettier --check .",
"test": "jest",
"build": "tsc --project tsconfig.json && tsc-alias",
"production": "yarn build && yarn start"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jest": "^27.4.0",
"@types/jsonwebtoken": "^8.5.8",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.14",
"@types/nodemailer": "^6.4.4",
"@types/validator": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"ndb": "^1.1.5",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}