-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "weather-api",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "dotenv -e .env.prod -- node dist/app.js",
"dev": "dotenv -e .env.dev -- nodemon --exec ts-node src/app.ts",
"build": "tsc"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/sqlite3": "^3.1.11",
"axios": "^1.8.1",
"bcryptjs": "^3.0.2",
"better-sqlite3": "^11.9.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"drizzle-orm": "^0.40.1",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"redis": "^5.8.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"@types/cors": "^2.8.19",
"@types/jsonwebtoken": "^9.0.10",
"@types/express": "^5.0.0",
"@types/redis": "^4.0.10"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/redis": "^4.0.10",
"dotenv-cli": "^10.0.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}