forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.98 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
{
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@microsoft/api-documenter": "^7.12.8",
"@microsoft/api-extractor": "^7.13.1",
"@snowpack/plugin-typescript": "^1.2.1",
"@snowpack/plugin-webpack": "^2.3.0",
"@types/snowpack-env": "^2.3.3",
"benchmark": "^2.1.4",
"file-loader": "^6.2.0",
"gzip-size": "^6.0.0",
"html-minifier-terser": "^5.1.1",
"lerna": "^4.0.0",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.41.2",
"rollup-plugin-cleanup": "^3.2.1",
"snowpack": "^3.0.13",
"terser": "^5.6.0",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"@ygoe/msgpack": "^1.0.2"
},
"scripts": {
"bootstrap": "yarn install && lerna -v && lerna bootstrap",
"build": "yarn bootstrap && lerna run build --sort",
"build:release": "yarn bootstrap && lerna run build:release --sort",
"build:es6only": "lerna run clean && lerna run build:es6 --sort",
"build:check": "lerna run build:check",
"clean": "lerna run clean",
"cover": "lerna run cover",
"doc": "lerna run doc",
"doc:readme": "lerna run doc:readme",
"doc:ae": "lerna run doc:ae && scripts/collect-apis",
"doc:examples": "ts-node -P tools/tsconfig.json tools/src/readme-examples.ts",
"examples": "scripts/build-examples",
"pub": "lerna publish --registry https://registry.npmjs.org/ && yarn doc && scripts/deploy-docs",
"test": "yarn build && yarn test:only",
"test:only": "lerna run test",
"tool:imports": "ts-node -P tools/tsconfig.json tools/src/check-imports.ts",
"tool:searchindex": "ts-node -P tools/tsconfig.json tools/src/build-search-index.ts"
},
"resolutions": {
"typescript": "^4.2.3"
}
}