-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.99 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.99 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
{
"name": "app",
"version": "0.0.1",
"description": "app",
"main": "src/index.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"build:prod": "tsc -p tsconfig.prod.json",
"minify": "esbuild dist/**.js dist/**/*.js --bundle --minify --target=node20 --platform=node --outdir=dist --allow-overwrite --packages=external",
"format:check": "prettier --check 'src/**/*.ts'",
"format:fix": "prettier --write 'src/**/*.ts'",
"format:pre-commit": "pretty-quick --staged",
"lint": "eslint '*/**/*.{js,ts}' --cache",
"lint:fix": "eslint '*/**/*.{js,ts}' --cache --quiet --fix",
"migrate": "dbmate up",
"start": "npm run migrate && npm run start:dev",
"start:prod": "node dist/index.js",
"start:dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/index.ts",
"test": "jest --silent",
"test:watch": "jest --watch",
"prepare": "husky"
},
"author": "",
"license": "ISC",
"dependencies": {
"argon2": "^0.43.0",
"body-parser": "^1.20.2",
"class-validator": "^0.14.2",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.3",
"@types/pg": "^8.11.0",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"dbmate": "^2.27.0",
"esbuild": "^0.25.1",
"eslint": "^9.11.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-when": "^3.6.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"pretty-quick": "^4.0.0",
"supertest": "^7.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.0",
"typescript-eslint": "^8.7.0"
}
}