-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 3.75 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 3.75 KB
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
{
"name": "solid-devtools-multirepo",
"private": true,
"version": "0.1.0",
"desciption": "development repo for solid-devtools",
"devDependencies": {
"c8": "^7.11.2",
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.1",
"rollup": "^2.56.1",
"tslib": "^2.3.1",
"typescript": ">=4.4.0",
"vitest": "^0.11.0",
"yarn": "^1.22.15"
},
"resolutions": {
"vite": "2.9.8",
"esbuild": "0.14.27",
"lerna": "4.0.0",
"dom-expressions": "workspace:*",
"babel-plugin-jsx-dom-expressions": "workspace:*",
"lit-dom-expressions": "workspace:*",
"hyper-dom-expressions": "workspace:*",
"solid-js": "workspace:*",
"babel-preset-solid": "workspace:*",
"solid-app-router": "0.3.0",
"vite-plugin-solid": "2.2.5",
"solid-refresh": "0.4.0"
},
"scripts": {
"bootstrap": "yarn install --mode=skip-build",
"build-dom-expressions:babel": "yarn workspace babel-plugin-jsx-dom-expressions run build",
"build-dom-expressions:lit": "cd submodules/dom-expressions/packages/lit-dom-expressions && npm run build",
"build-dom-expressions:hyper": "cd submodules/dom-expressions/packages/hyper-dom-expressions && npm run build",
"build-solid": "cd submodules/solid/packages/solid && npm run build",
"build-dev-dependencies": "npm-run-all -c -p 'build-dom-expressions:*' build-solid",
"build-solid-devtools": "cd submodules/solid-devtools && yarn run build",
"build-benchmark:solid": "cd examples/js-framework-benchmark/frameworks/keyed/solid && npm ci && npm run build-prod",
"build-benchmark:solid-patched": "cd examples/benchmark-solid-patched && npm run build-prod && cd ../js-framework-benchmark/frameworks/keyed && ln -sfn ../../../benchmark-solid-patched solid-patched",
"build-benchmark:driver": "cd examples/js-framework-benchmark/webdriver-ts && npm ci && npm run compile",
"build-benchmark": "npm-run-all 'build-benchmark:*'",
"build": "npm-run-all -s build-dev-dependencies build-solid-devtools",
"start-test-dynamic": "cd examples/test-dynamic && ./node_modules/.bin/vite",
"start-example:tutorial-cats": "cd examples/tutorial-cats && ./node_modules/.bin/vite --open",
"start-example:solid-tree-view": "cd examples/solid-tree-view && ./node_modules/.bin/vite --open",
"start-example:solid-site": "cd examples/solid-site && ./node_modules/.bin/vite --open",
"start-examples": "npm-run-all -p 'start-example:*'",
"start-benchmark-server": "cd examples/js-framework-benchmark && npm run start",
"run-benchmark-driver": "cd examples/js-framework-benchmark/webdriver-ts && npm run bench keyed/solid && npm run bench keyed/solid-patched",
"run-benchmark-results": "cd examples/js-framework-benchmark/webdriver-ts && npm run results && open-cli http://localhost:8080/webdriver-ts-results/table.html",
"run-benchmark-driver-results": "npm-run-all run-benchmark-driver run-benchmark-results",
"run-benchmark": "npm-run-all build-benchmark -p start-benchmark-server run-benchmark-driver-results",
"typecheck-solid-devtools": "cd submodules/solid-devtools && tsc -p tsconfig.json --noEmit",
"eslint-solid-devtools": "yarn workspace solid-devtools-extension run eslint",
"test-solid-devtools": "cd submodules/solid-devtools && vitest run --coverage"
},
"packageManager": "yarn@3.0.2",
"workspaces": [
"examples/*",
"examples/js-framework-benchmark/webdriver-ts-results",
"submodules/dom-expressions",
"submodules/dom-expressions/packages/*",
"submodules/solid",
"submodules/solid/packages/*",
"submodules/solid-devtools"
]
}