-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.25 KB
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
71
72
{
"name": "url-shortener-service",
"version": "1.0.0",
"description": "A backend template built with Express and Node.js to kickstart development quickly.",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"start:dev": "ts-node-dev --respawn -r tsconfig-paths/register ./src/bin/www.ts",
"build": "tsc -p tsconfig.json && tsconfig-replace-paths -p tsconfig.json",
"start": "node build/src/bin/www.js",
"lint": "eslint --ext .ts ./src --max-warnings=0",
"lint:fix": "eslint --fix --ext .ts ./src",
"test": "jest --config jest.config.ts --coverage",
"test:watch": "jest --config jest.config.ts --watch",
"format": "prettier --write \"./src/**/*.{ts,js,json,md}\"",
"check-format": "prettier --check \"./src/**/*.{ts,js,json,md}\"",
"clean": "rm -rf build",
"purge": "rm -rf node_modules && npm cache clean --force",
"prepare": "husky install"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.2.0",
"@aws-sdk/client-dynamodb": "^3.699.0",
"@aws-sdk/lib-dynamodb": "^3.699.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^5.0.1",
"ioredis": "^5.4.1",
"nanoid": "^5.0.9",
"pino": "^9.5.0",
"redis": "^4.7.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.12",
"@types/redis": "^4.0.10",
"@types/supertest": "^6.0.2",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "~8.0.3",
"jest": "~29.6.1",
"lint-staged": "^15.2.10",
"minimatch": "^3.0.5",
"pino-pretty": "^11.3.0",
"prettier": "~3.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsconfig-replace-paths": "^0.0.14",
"typescript": "~5.1.6"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.{js,json,md}": [
"prettier --write"
]
}
}