forked from isomorphic-typescript/ts-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 2.2 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
{
"version": "1.0.0",
"author": "Alexander Leung",
"license": "MIT",
"scripts": {
"clean": "shx rm -rf ./.yarn ./packages/@isomorphic-typescript/ts-monorepo~/build && shx rm ./packages/@isomorphic-typescript/ts-monorepo~/tsconfig.tsbuildinfo ./.pnp.js ./.yarnrc.yml ./yarn.lock",
"gen:pack": "shx cp ./README.md ./packages/@isomorphic-typescript/ts-monorepo~/ && yarn workspace @isomorphic-typescript/ts-monorepo pack && shx rm ./packages/@isomorphic-typescript/ts-monorepo~/README.md",
"gen:stable": "shx rm -rf ./stable && shx mkdir -p ./stable && node ./scripts/untar.js ./packages/@isomorphic-typescript/ts-monorepo~/package.tgz ./stable",
"build:stable": "yarn gen:stable && yarn add -D @isomorphic-typescript/ts-monorepo@portal:./stable && yarn install && yarn ts-monorepo",
"build:rapid": "yarn add -D @isomorphic-typescript/ts-monorepo@portal:./packages/@isomorphic-typescript/ts-monorepo~ && yarn install && yarn start:rapid",
"start:rapid": "node ./packages/@isomorphic-typescript/ts-monorepo~/build/ts-monorepo.js",
"build:compile-only": "tsc -b --watch --preserveWatchOutput ./.ts-monorepo/tsconfig-leaves.json",
"vscode": "yarn add -D @yarnpkg/pnpify && yarn pnpify --sdk && yarn remove @yarnpkg/pnpify",
"publish:npm": "npm login && npm publish --access public ./packages/@isomorphic-typescript/ts-monorepo~/package.tgz",
"publish:beta": "publish:npm && yarn gen:stable && node ./scripts/publish.js next",
"publish:release": "publish:npm && yarn gen:stable && node ./scripts/publish.js latest",
"publish:both": "yarn gen:stable && node ./scripts/publish.js next latest"
},
"devDependencies": {
"@isomorphic-typescript/ts-monorepo": "portal:./packages/@isomorphic-typescript/ts-monorepo~",
"@yarnpkg/pnpify": "^3.0.0-rc.6",
"nodemon": "^2.0.7",
"shx": "^0.3.2",
"tar": "^6.0.2",
"ttypescript": "^1.5.12",
"typescript": "^4.3.2"
},
"dependenciesMeta": {
"@types/webpack": {
"unplugged": true
},
"fp-ts": {
"unplugged": true
},
"io-ts": {
"unplugged": true
},
"webpack": {
"unplugged": true
}
},
"private": true,
"workspaces": [
"packages/@isomorphic-typescript/ts-monorepo~"
]
}