-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.65 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@lomray/vite-ssr-boost",
"version": "1.0.0",
"description": "Vite plugin for create awesome SSR or SPA applications on React.",
"type": "module",
"keywords": [
"js",
"vite",
"plugin",
"react",
"ssr"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Lomray-Software/vite-ssr-boost.git"
},
"bugs": {
"url": "https://github.com/Lomray-Software/vite-ssr-boost/issues"
},
"homepage": "https://github.com/Lomray-Software/vite-ssr-boost",
"author": "Mikhail Yarmaliuk",
"license": "Apache-2.0",
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"release": "npm run build && cd lib && npm publish",
"lint:check": "eslint \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"lint:format": "eslint --fix \"src/**/*.{ts,tsx,*.ts,*tsx}\"",
"ts:check": "tsc --project ./tsconfig.json --skipLibCheck --noemit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^12.1.0",
"compression": "^1.7.5",
"express": "^4.21.2",
"hoist-non-react-statics": "^3.3.2",
"json5": "^2.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@lomray/eslint-config-react": "^5.0.6",
"@lomray/prettier-config": "^2.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/react": "^16.1.0",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/chai": "^5.0.1",
"@types/compression": "^1.7.5",
"@types/hoist-non-react-statics": "^3.3.6",
"@types/react-dom": "^18.3.0",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@vitest/coverage-v8": "^2.1.8",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^5.1.2",
"eslint": "^8.57.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-folder-input": "^1.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-ts": "^3.4.5",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "^5.3.3",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@babel/generator": ">=7.23.0",
"@babel/parser": ">=7.23.0",
"@babel/traverse": ">=7.23.0",
"@types/express": ">=4.17.21",
"react-dom": ">=18.2.0",
"react-router": "^7.0.1",
"vite": ">=5"
},
"bin": {
"ssr-boost": "cli.js"
}
}