generated from dragonfish/node-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc -p tsconfig.prod.json",
"debug": "nodemon -r dotenv/config src/index.ts",
"format": "eslint ./src --fix",
"integration-test": "NODE_ENV=test jest --group=integration",
"lint": "eslint ./src",
"start": "node build/index.js",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@buf/ride_notification.connectrpc_es": "0.13.1-20230728133931-d7e9cae588d2.1",
"@bufbuild/protobuf": "^2.0.0",
"@connectrpc/connect": "^1.0.0",
"@connectrpc/connect-node": "^1.1.2",
"@googlemaps/polyline-codec": "^1.0.28",
"@types/jsonwebtoken": "^9.0.5",
"firebase-admin": "^12.0.0",
"geofire-common": "^6.0.0",
"jsonwebtoken": "^9.0.2",
"otpauth": "^9.2.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@tsconfig/node-lts": "20.1.3",
"@tsconfig/strictest": "2.0.5",
"@types/jest": "29.5.12",
"@types/node": "20.16.5",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"dotenv": "16.4.5",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-jest": "28.8.3",
"jest": "29.7.0",
"jest-node-exports-resolver": "1.1.6",
"jest-runner-groups": "2.2.0",
"nodemon": "3.1.4",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
"engines": {
"node": ">=18"
}
}