-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.76 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
69
70
71
72
73
74
75
76
{
"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: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",
"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",
"test": "NODE_ENV=development node test.mjs",
"release": "ts-node ./scripts/release.ts",
"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",
"purge": "pnpm -p -r -c exec rm -rf node_modules"
},
"husky": {
"hooks": {
"pre-commit": "pnpm build"
}
},
"devDependencies": {
"@apollo/client": "^3.11.10",
"@babel/runtime": "^7.22.5",
"@graphql-codegen/add": "^5.0.3",
"@graphql-codegen/cli": "^5.0.3",
"@graphql-codegen/import-types-preset": "^3.0.0",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typed-document-node": "^5.0.12",
"@graphql-codegen/typescript": "^4.1.2",
"@graphql-codegen/typescript-operations": "^4.4.0",
"@graphql-typed-document-node/core": "^3.2.0",
"@my-react/react": "workspace:*",
"@my-react/react-dom": "workspace:*",
"@my-react/react-jsx": "workspace:*",
"@my-react/react-reactive": "workspace:*",
"@my-react/react-reconciler": "workspace:*",
"@my-react/react-refresh": "workspace:*",
"@my-react/react-refresh-tools": "workspace:*",
"@my-react/react-shared": "workspace:*",
"@my-react/react-terminal": "workspace:*",
"@swc/core": "^1.7.40",
"@types/lodash": "^4.17.13",
"@types/node": "^22.8.4",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"cross-fetch": "^4.0.0",
"cross-port-killer": "^1.4.0",
"eslint": "^8.57.0",
"graphql": "^16.9.0",
"husky": "^9.1.5",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"prettier": "^3.3.3",
"project-tool": "https://github.com/MrWangJustToDo/project-tool.git",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typescript": "^5.3.3"
}
}