-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
68 lines (68 loc) · 2.93 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "root",
"description": "Polywrap Toolchain",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/polywrap/toolchain.git"
},
"workspaces": {
"packages": [
"./packages/cli",
"./packages/js/**",
"./packages/manifests/**",
"./packages/schema/**",
"./packages/templates/**",
"./packages/test-cases",
"./packages/wasm/**"
]
},
"scripts": {
"postinstall": "ts-node ./scripts/patch-peer-deps.ts",
"reset": "yarn clean && yarn && yarn build",
"clean": "npx rimraf ./**/node_modules ./**/yarn.lock ./**/build ./**/coverage ./**/.polywrap",
"install:test-wrappers": "lerna run generate:wrappers --scope @polywrap/test-cases",
"build": "yarn build:core && yarn build:cli && yarn install:test-wrappers",
"build:core": "lerna run build --no-private --ignore polywrap --ignore @polywrap/cli-js",
"build:cli": "lerna run build --scope polywrap && lerna run build --scope @polywrap/cli-js",
"build:docs": "lerna run build:docs",
"pkg": "lerna run pkg:prod --scope polywrap",
"lint": "lerna run lint",
"lint:fix": "lerna run lint -- --fix",
"lint:ci": "yarn lint",
"test": "lerna run test --no-private --concurrency 1",
"test:core": "lerna run test --no-private --ignore polywrap* --ignore @polywrap/cli-js --ignore @polywrap/templates --concurrency 1",
"test:cli": "yarn test:cli:unit && yarn test:cli:e2e && yarn test:cli:js",
"test:cli:unit": "lerna run test:unit --scope polywrap --concurrency 1",
"test:cli:e2e": "yarn test:cli:e2e:p1 && yarn test:cli:e2e:p2",
"test:cli:e2e:p1": "lerna run test:e2e:p1 --scope polywrap --concurrency 1",
"test:cli:e2e:p2": "lerna run test:e2e:p2 --scope polywrap --concurrency 1",
"test:cli:js": "lerna run test --scope @polywrap/cli-js --concurrency 1",
"test:templates": "lerna run test --no-private --scope @polywrap/templates --concurrency 1",
"version:apply": "lerna version $(cat VERSION) --exact --no-git-tag-version --yes",
"postversion:apply": "git add . && git commit -m \"build(release): migrate to `cat ./VERSION`\"",
"publish:npm": "lerna exec --no-private --concurrency 1 -- yarn publish --access public --non-interactive --verbose",
"publish:pre:npm": "lerna exec --no-private --concurrency 1 -- yarn publish --access public --non-interactive --verbose --tag pre"
},
"devDependencies": {
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "4.11.1",
"@typescript-eslint/parser": "4.11.1",
"eslint": "7.16.0",
"eslint-config-prettier": "7.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-prettier": "3.4.0",
"graphql": "15.5.0",
"lerna": "4.0.0",
"prettier": "2.2.1",
"ts-node": "10.9.1",
"rimraf": "3.0.2"
},
"resolutions": {
"@types/react": "16.9.0",
"@types/react-dom": "16.9.0",
"@types/node": "18.15.0"
}
}