-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "shared",
"version": "1.0.0",
"description": "> TODO: description",
"author": "rmagur1203 <[email protected]>",
"homepage": "https://github.com/2022-WHO-ARE-WE/cling-server#readme",
"license": "ISC",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/2022-WHO-ARE-WE/cling-server.git"
},
"scripts": {
"build": "rimraf ./lib && npm run build:proto && npm run build:tsc && npm run build:copy",
"build:tsc": "tsc -b",
"build:copy": "copyfiles --up 1 src/protocols/**/* lib",
"build:proto": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto.cmd --ts_proto_opt=nestJs=true --ts_proto_out=./src/generated -I ./src/protocols ./src/protocols/*.proto"
},
"bugs": {
"url": "https://github.com/2022-WHO-ARE-WE/cling-server/issues"
},
"dependencies": {},
"devDependencies": {
"copyfiles": "^2.4.1",
"rimraf": "^3.0.2",
"ts-proto": "^1.125.0"
}
}