-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.03 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
{
"name": "moddie-view-backend",
"version": "0.0.0",
"scripts": {
"build": "npm run lint && tsc --project tsconfig.prod.json",
"clean-install": "rm -rf ./node_modules && rm -r package-lock.json && npm i",
"dev": "DOTENV_CONFIG_PATH=./config/.env.development ts-node ./src/main",
"dev:watch": "nodemon --exec \"npm run dev\" --watch ./src --ext .ts",
"lint": "eslint .",
"format": "prettier --write .",
"start": "DOTENV_CONFIG_PATH=./config/.env.production node -r dotenv/config -r module-alias/register ./dist/main.js",
"test": "NODE_ENV=test vitest",
"type-check": "tsc -b --noEmit"
},
"engines": {
"node": ">=22.0.0"
},
"_moduleAliases": {
"@src": "dist"
},
"dependencies": {
"@googleapis/youtube": "^31.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dayjs": "^1.11.19",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"helmet": "^8.1.0",
"ioredis": "^5.9.2",
"jet-env": "^1.1.6",
"jet-logger": "^2.2.3",
"jet-paths": "^2.0.1",
"jet-validators": "^2.2.6",
"jsonfile": "^6.2.0",
"jsonwebtoken": "^9.0.3",
"module-alias": "^2.2.3",
"morgan": "^1.10.1",
"nanoid": "^5.1.6",
"socket.io": "^4.8.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@swc/core": "^1.15.11",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/cookie-parser": "^1.4.10",
"@types/find": "^0.2.4",
"@types/fs-extra": "^11.0.4",
"@types/jsonfile": "^6.1.4",
"@types/jsonwebtoken": "^9.0.10",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.10",
"@types/node": "^25.2.0",
"@types/supertest": "^6.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.23.2",
"find": "^0.3.0",
"fs-extra": "^11.3.3",
"jiti": "^2.6.1",
"nodemon": "^3.1.11",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
}
}