forked from szymmis/vite-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.16 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
{
"name": "vite-express",
"version": "0.16.0",
"main": "dist/main.js",
"types": "dist/main.d.ts",
"author": "szymmis",
"repository": "https://github.com/szymmis/vite-express",
"description": "Vite integration module for Express",
"license": "MIT",
"scripts": {
"dev": "concurrently -i -P \"sh scripts/dev.sh {1}\" \"yarn build --watch\" --",
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
"postbuild": "sed -i \"s/export default _default/export = _default/\" dist/main.d.ts",
"pretest": "yarn build",
"test": "vitest --pool=forks",
"format": "prettier --write --loglevel silent",
"lint": "eslint --fix",
"type-check": "tsc --noEmit; tsc --noEmit -p create-vite-express/tsconfig.json",
"prepare": "husky install && cd create-vite-express && yarn install",
"publish:core": "bash scripts/publish.sh",
"publish:cli": "bash scripts/publish-cli.sh"
},
"dependencies": {
"picocolors": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.9",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"nodemon": "^3.0.1",
"prettier": "^3.1.0",
"puppeteer": "^21.5.2",
"rimraf": "^5.0.5",
"rollup": "^4.5.2",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"supertest": "^6.3.3",
"tslib": "^2.6.2",
"tsx": "^4.5.0",
"typescript": "^5.3.2",
"vite": "^5.0.2",
"vitest": "^1.1.1"
},
"files": [
"./dist"
],
"lint-staged": {
"**/*.json": "yarn format",
"**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"keywords": [
"express",
"vite",
"integration",
"module",
"connector"
]
}