forked from zhangyuang/ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.33 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.33 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
{
"name": "ssr",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"pnpm:devPreinstall": "npx esno scripts/preinstall.ts",
"postinstall": "esno scripts/postinstall.ts",
"bootstrap": "pnpm i && pnpm build",
"clean": "node scripts/scripts.js --clean",
"dev": "esno scripts/dev.ts",
"build": "esno scripts/turbo.ts --cmd build",
"build:publish": "pnpm --filter ./packages build:publish",
"lint": "cross-env NODE_OPTIONS=--max_old_space_size=4096 eslint packages example e2e --ext .js,.ts --cache --cache-strategy content",
"lint:fix": "cross-env NODE_OPTIONS=--max_old_space_size=4096 eslint packages example e2e --ext .js,.ts --cache --fix",
"sync": "node scripts/scripts.js --sync",
"e2e": "cypress run --browser chrome",
"release": "esno scripts/release.ts",
"ci-publish": "esno scripts/publishCI.ts",
"example:midway:vue": "cd example/midway-vue-ssr && npm start",
"example:midway:react": "cd example/midway-react-ssr && npm start",
"example:midway:vue3": "cd example/midway-vue3-ssr && npm start",
"example:midway:vue3:vite": "cd example/midway-vue3-ssr && npm run start:vite",
"example:midway:react:vite": "cd example/midway-react-ssr && npm run start:vite",
"example:nestjs:react:prod": "cd example/nestjs-react-ssr && npm run prod",
"example:nestjs:vue3:prod": "cd example/nestjs-vue3-ssr && npm run prod",
"example:nestjs:vue3:prod:optimize": "cd example/nestjs-vue3-ssr && npx ssr build -o && npx pm2 start pm2.config.js",
"example:nestjs:react:prod:optimize": "cd example/nestjs-react-ssr && npx ssr start -o",
"example:nestjs:vue:prod": "cd example/nestjs-vue-ssr && npm run prod",
"example:nestjs:react:prod:vite": "cd example/nestjs-react-ssr && npm run prod:vite",
"example:nestjs:vue3:prod:vite": "cd example/nestjs-vue3-ssr && npm run prod:vite",
"example:nestjs:react": "cd example/nestjs-react-ssr && npm start",
"example:nestjs:vue": "cd example/nestjs-vue-ssr && npm start",
"example:nestjs:vue3": "cd example/nestjs-vue3-ssr && npm start",
"example:midway:react:dynamic:router": "cd example/react-dynamic-router-test && npm start",
"example:nestjs:vue3:pinia": "cd example/nestjs-vue3-ssr-pinia && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhangyuang/ssr.git"
},
"author": "zhangyuang",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhangyuang/ssr/issues"
},
"husky": {
"hooks": {
"pre-commit": "pnpm lint",
"commit-msg": "node scripts/verifyCommit.js"
}
},
"engines": {
"node": ">=12.17.0"
},
"homepage": "https://github.com/zhangyuang/ssr#readme",
"devDependencies": {
"@types/node": ">=14.0.0",
"@types/prompts": "^2.0.14",
"@types/semver": "^7.3.10",
"@types/shelljs": "^0.8.11",
"concurrently": "^5.3.0",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"cypress": "^6.9.1",
"eslint": "^7.32.0",
"eslint-config-standard-react-ts": "^1.0.16",
"eslint-config-standard-vue-ts": "^1.0.21",
"esno": "^0.16.3",
"execa": "^5.1.1",
"husky": "^4.3.8",
"minimist": "^1.2.6",
"picocolors": "^1.0.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"shelljs": "^0.8.5",
"tsc-transpile-only": "^0.0.3",
"turbo": "^1.4.2",
"typescript": "^4.7.4"
}
}