-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.79 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.79 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"version": "0.1.0",
"license": "MIT",
"name": "myreact",
"author": "MrWangJustToDo",
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"dev:ssr": "cd ./ui/ssr-example && pnpm run dev",
"dev:ssr-inspect": "cd ./ui/ssr-example && pnpm run dev:inspect",
"dev:csr": "cd ./ui/csr-example && pnpm run dev",
"dev:next": "cd ./ui/next-example && pnpm run dev",
"dev:rspack": "cd ./ui/rspack-example && pnpm run dev",
"dev:vite": "cd ./ui/vite-example && pnpm run dev",
"dev:remix": "cd ./ui/remix-example && pnpm run dev",
"dev:vite-ssr": "cd ./ui/vite-ssr-example && pnpm run dev",
"dev:rsc": "cd ./ui/rsc-example && pnpm run dev",
"dev:lynx": "cd ./ui/lynx-example && pnpm run dev",
"dev:stream": "cd ./ui/csr-example && pnpm run dev:stream",
"start:ssr": "cd ./ui/ssr-example && pnpm run build && pnpm run start",
"build:site": "cd ./ui/ssr-example && pnpm run build:static",
"gen:gql": "graphql-codegen --config site/graphql/codegen.yaml",
"dev": "ts-node ./scripts/rollupWatch.ts",
"build": "ts-node ./scripts/rollupBuild.ts",
"release": "ts-node ./scripts/release.ts",
"commit": "NODE_ENV=production node ./commit.mjs",
"prepare:terminal": "ts-node ./scripts/rollupTerminal.ts",
"test:opentui": "DEV=true bun ./opentui.mjs",
"test:terminal": "NODE_ENV=development DEV=true node ./test.mjs",
"test:terminal-inspect": "NODE_ENV=development DEV=true node --inspect ./test.mjs",
"test:three": "cd ./test/three-fiber && pnpm run dev",
"test:canvas": "cd ./test/canvas && pnpm run dev",
"test-inspect:terminal": "NODE_ENV=development DEV=true node --inspect ./test.mjs",
"lint": "eslint --cache --ext ts,tsx .",
"lint:fix": "pnpm run lint --fix",
"prettier": "prettier --ignore-path .prettierignore --write .",
"clean": "pnpm -p -r -c exec rm -rf dist dev .cache .next tsconfig.build.tsbuildinfo",
"purge": "pnpm -p -r -c exec rm -rf node_modules",
"prepare": "husky"
},
"devDependencies": {
"@apollo/client": "catalog:",
"@babel/runtime": "catalog:",
"@graphql-codegen/add": "catalog:",
"@graphql-codegen/cli": "catalog:",
"@graphql-codegen/import-types-preset": "catalog:",
"@graphql-codegen/near-operation-file-preset": "catalog:",
"@graphql-codegen/typed-document-node": "catalog:",
"@graphql-codegen/typescript": "catalog:",
"@graphql-codegen/typescript-operations": "catalog:",
"@graphql-typed-document-node/core": "catalog:",
"@my-react/react": "workspace:*",
"@my-react/react-dom": "workspace:*",
"@my-react/react-jsx": "workspace:*",
"@my-react/react-lynx": "workspace:*",
"@my-react/react-opentui": "workspace:*",
"@my-react/react-reactive": "workspace:*",
"@my-react/react-reconciler": "workspace:*",
"@my-react/react-reconciler-compact": "workspace:*",
"@my-react/react-refresh": "workspace:*",
"@my-react/react-refresh-tools": "workspace:*",
"@my-react/react-shared": "workspace:*",
"@my-react/react-terminal": "workspace:*",
"@my-react/react-three-fiber": "workspace:*",
"@rollup/plugin-alias": "catalog:",
"@swc/core": "catalog:",
"@test/react-terminal": "workspace:*",
"@test/react-opentui": "workspace:*",
"@types/lodash": "catalog:",
"@types/node": "catalog:",
"@types/react": "catalog:",
"@types/react-dom": "catalog:",
"cross-fetch": "catalog:",
"cross-port-killer": "catalog:",
"eslint": "catalog:",
"graphql": "catalog:",
"husky": "catalog:",
"lodash": "catalog:",
"lodash-es": "catalog:",
"prettier": "catalog:",
"project-tool": "https://github.com/MrWangJustToDo/project-tool.git",
"react": "catalog:",
"react-dom": "catalog:",
"ts-node": "catalog:",
"tslib": "catalog:",
"typescript": "catalog:"
}
}