-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "muj_sclm",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "node dist/app.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts",
"lint": "prettier . --write && eslint 'src/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express-session": "^1.18.1",
"axios": "^1.9.0",
"axios-cookiejar-support": "^6.0.2",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.43.1",
"express": "^5.1.0",
"express-session": "^1.18.1",
"fetch-cookie": "^3.1.0",
"https-proxy-agent": "^7.0.6",
"node-fetch": "^3.3.2",
"pg": "^8.15.6",
"tough-cookie": "^5.1.2"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/express": "^5.0.1",
"@types/node": "^22.15.3",
"@types/pg": "^8.11.14",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"drizzle-kit": "^0.31.0",
"eslint": "^9.26.0",
"globals": "^16.0.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1"
}
}