-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
51
{
"name": "chord-grpc",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cleanData": "ts-node ./data/cleanData.ts",
"server": "ts-node ./app/node.ts",
"debugPrimary": "ts-node-dev --nolazy --inspect-brk=9229 --watch '**/*.ts' --rs false ./app/node.ts -- --port 8440",
"debugSecondary": "ts-node-dev --nolazy --inspect-brk=9230 --watch '**/*.ts' --rs false ./app/node.ts --port 8441 --knownPort 8440",
"client": "ts-node ./client/client.ts",
"web": "ts-node ./web/web.ts",
"devServer": "ts-node-dev --watch '**/*.ts' --rs false ./app/node.ts",
"devWeb": "ts-node-dev --watch '**/*.ts' ./web/web.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@grpc/proto-loader": "^0.5.2",
"@types/crypto-js": "^3.1.43",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/mathjs": "^6.0.2",
"@types/minimist": "^1.2.0",
"@types/xml2js": "^0.4.5",
"async": "^1.5.2",
"crypto-js": "^3.1.9-1",
"express": "^4.17.1",
"google-protobuf": "^3.10.0",
"grpc": "^1.24.9",
"grpc-caller": "^0.13.0",
"lodash": "^4.17.21",
"mathjs": "^7.5.1",
"minimist": "^1.2.6",
"xml2js": "^0.4.22"
},
"devDependencies": {
"husky": "^3.0.9",
"prettier": "1.18.2",
"pretty-quick": "^2.0.0",
"ts-node": "^8.4.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}