-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "express-starter",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node bin/www.ts",
"worker": "node dist/bin/worker.js",
"start": "node dist/bin/www.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**/*.{ts,js,json,md}'",
"test": "echo \"no test specified\"",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.6.2",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.27.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/geojson": "^7946.0.16",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.9",
"@types/socket.io-client": "^3.0.0",
"eslint": "^9.27.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
},
"dependencies": {
"@turf/distance": "^7.2.0",
"@turf/helpers": "^7.2.0",
"@turf/nearest-point-on-line": "^7.2.0",
"@types/socket.io": "^3.0.2",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.15.0",
"openmeteo": "^1.2.0",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"pino-rotating-file-stream": "^0.0.2",
"pm2": "^6.0.6",
"prom-client": "^15.1.3",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"tslib": "^2.8.1"
}
}