-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 996 Bytes
/
package.json
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.0.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": "^0.23.0",
"class-transformer": "^0.4.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^4.1.3",
"reflect-metadata": "^0.1.13",
"request": "^2.88.2"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.1",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.4.4"
}
}