-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
40 lines (40 loc) · 1.48 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
{
"private": true,
"workspaces": [
"packages/api",
"packages/utils",
"packages/definitions",
"packages/elasticsearch",
"packages/resource-discussions"
],
"repository": "https://github.com/dappforce/subsocial-js",
"scripts": {
"build": "lerna run build",
"build:back": "lerna run build --scope=@subId/backend",
"build:frond": "lerna run build --scope=@subsocial/api",
"publish:config": "./scripts/publish-config.sh",
"publish:types": "yarn build:types && ./scripts/publish-types.sh",
"publish:utils": "yarn build:utils && ./scripts/publish-utils.sh",
"publish:api": "yarn build:api && ./scripts/publish-api.sh",
"publish:docs": "yarn clean:build && ./scripts/generate-docs.sh",
"publish:all": "yarn build && ./scripts/publish-all.sh",
"get-metadata": "./scripts/get-metadata.sh",
"generate:defs": "cd packages/definitions && node get-metadata.js && lerna run generate --scope=@subsocial/definitions",
"clean": "lerna clean && yarn clean:build",
"clean:modules": "lerna clean",
"clean:build": "find . -name \"build\" -type d -prune -exec rm -rf '{}' +",
"test": "jest --verbose",
"postinstall": "lerna bootstrap --force-local && lerna link --force-local"
},
"devDependencies": {
"@types/lunr": "^2.3.4",
"@types/jest": "^26.0.20",
"lerna": "3.22.0",
"ts-node": "9.0.0",
"typedoc": "^0.23.21",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "4.6.x"
},
"version": "0.8.15-beta.0"
}