-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.08 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
{
"name": "grpc-to-http",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node ./build/server.js",
"start:watch": "node --watch-path=./build ./build/server.js",
"start:dev": "concurrently --prefixColors auto \"npm run start:watch\" \"npm run watch\"",
"build": "node build.js",
"watch": "node watch.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier .",
"format:fix": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@vitest/coverage-v8": "^2.1.8",
"concurrently": "^9.0.1",
"esbuild": "^0.24.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.8"
}
}