-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "sample-app",
"version": "0.0.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "./node_modules/.bin/ts-node build.ts",
"build:ci": "ts-node build.ts",
"lint": "eslint . --ext .ts --cache",
"start": "node -r module-alias/register ./dist --env=production",
"start:dev": "./start-dev.sh"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts, html, json",
"ignore": [
"src/public"
],
"exec": "./node_modules/.bin/ts-node -r tsconfig-paths/register ./src"
},
"_moduleAliases": {
"@server": "dist/Server"
},
"dependencies": {
"@grpc/grpc-js": "^1.6.1",
"@kevinmichaelchen/some-protos-ts": "^1.0.6",
"@types/node": "^16.4.9",
"command-line-args": "^5.2.0",
"long": "^5.2.0",
"module-alias": "^2.2.2",
"nice-grpc": "^1.0.8",
"node-cache": "^5.1.2",
"protobufjs": "^6.11.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"tsconfig-paths": "^3.10.1",
"yargs": "^17.2.1"
}
}