-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.86 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
{
"name": "tree-shaking-benchmarks",
"version": "1.0.0",
"description": "Tree Shaking Benchmarks",
"type": "module",
"scripts": {
"swc": "spack --config ./swcpack.config.cjs",
"infra-tsc": "tsc -p infra/tsconfig.json",
"webui-tsc": "tsc -p tsconfig.json",
"infra-node": "node dist/infra/infra.js",
"infra": "bun infra/infra.ts"
},
"entryPoints": {
"dynamic": "./webuis/dynamic/dynamic.ts",
"lit-element": "./webuis/lit-element/lit-element.ts",
"lit-material": "./webuis/lit-material/lit-material.ts",
"fast-element": "./webuis/fast-element/fast-element.ts",
"fast-fluent": "./webuis/fast-fluent/fast-fluent.ts",
"react": "./webuis/react/react.tsx",
"react-fluent": "./webuis/react-fluent/react-fluent.tsx",
"react-fluent-hydration": "./webuis/react-fluent-hydration/react-fluent-hydration.tsx"
},
"license": "ISC",
"dependencies": {
"@fluentui/react-components": "^9.46.1",
"@fluentui/tokens": "^1.0.0-alpha.13",
"@fluentui/web-components": "3.0.0-beta.6",
"@material/web": "^1.2.0",
"@microsoft/fast-element": "^2.0.0-beta.26",
"@microsoft/fast-foundation": "^3.0.0-alpha.32",
"@microsoft/fast-web-utilities": "^6.0.0",
"lit": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@griffel/babel-preset": "^1.5.6",
"@griffel/webpack-extraction-plugin": "^0.5.0",
"@griffel/webpack-loader": "^2.2.8",
"@rspack/core": "^0.5.2",
"@swc/cli": "^0.3.2",
"@swc/core": "^1.3.106",
"@types/node": "^20.11.7",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"bun-types": "^1.0.25",
"commander": "^11.1.0",
"css-loader": "^6.9.1",
"dotenv": "^16.4.1",
"esbuild": "^0.19.12",
"esbuild-loader": "^4.0.3",
"mini-css-extract-plugin": "^2.7.7",
"typescript": "^5.3.3",
"webpack": "^5.90.0"
}
}