-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "",
"main": "./src/index.ts",
"scripts": {
"start": "tsc & tsc-alias && node dist/index.js",
"watch": "nodemon",
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --ignore-path .gitignore --write \"./src/**/*.+(js|ts|json)\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/pino": "^7.0.5",
"@types/uuid": "^9.0.8",
"@types/validatorjs": "^3.15.5",
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pino": "^8.19.0",
"uuid": "^9.0.1",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.3",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.4.3"
}
}