-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 993 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 993 Bytes
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
{
"name": "instant-weather",
"version": "0.1.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"test": "jest"
},
"author": "zaldih",
"license": "all rights reserved",
"dependencies": {
"axios": "^1.10.0",
"class-transformer": "^0.5.1",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"mongodb": "^6.17.0",
"reflect-metadata": "^0.2.2",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.15",
"husky": "^9.1.7",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.8.3"
}
}