-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.12 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
77
{
"name": "@vise-ssr/monorepo",
"private": "true",
"version": "0.1.0",
"description": "Vue3 SSR framework with vite & typescript",
"scripts": {
"start": "pnpm install",
"postinstall": "git update-index --assume-unchanged ./packages/core/bin/vise.js ./packages/express-server/bin/vise-express.js",
"clean": "npm-run-all -p 'clean --workspaces'",
"build:core": "npm run build -w=packages/core",
"eslint": "eslint --ext .ts,.js,.cjs,.vue,.tsx ./",
"eslint:fix": "eslint --fix --ext .ts,.js ./",
"syncversion": "./scripts/sync-vise-version.mjs",
"jekyll:install": "(cd ./docs && bundle install --path ./.bundle)",
"jekyll": "(cd ./docs && bundle exec jekyll serve -o)",
"test": "vitest run -c vitest.config.ts"
},
"repository": {},
"author": "stauren@qq.com",
"license": "MIT",
"workspaces": [
"packages/*",
"packages/plugins/*",
"playground/*"
],
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@vitejs/plugin-vue": "^4.5.1",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@types/node": "^18.7.23",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-folders": "^1.0.3",
"eslint-plugin-unicorn": "^37.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-vue": "^9.8.0",
"husky": "^4.3.8",
"jsdom": "^20.0.0",
"lint-staged": "^10.4.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"tslib": "^2.3.1",
"typescript": "~4.6.3",
"vite": "^5.0.4",
"vitest": "^0.34.6",
"vue": "^3.3.4",
"zx": "^7.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --fix",
"vitest related"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pnpm": {
"overrides": {
"@rollup/pluginutils": "^5.1.0"
}
}
}