forked from szymmis/vite-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.2 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
{
"name": "vite-express",
"version": "0.7.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",
"test": "ts-node tests/index.test.ts",
"test:local": "LOCAL_BUILD_TEST=true ts-node tests/index.test.ts",
"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": {
"node-fetch": "^2.0.0",
"picocolors": "^1.0.0"
},
"peerDependencies": {
"express": "^4.18.2",
"vite": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.2.0",
"@rollup/plugin-typescript": "^10.0.1",
"@types/express": "^4.17.14",
"@types/node": "^18.11.12",
"@types/node-fetch": "^2.6.2",
"@types/socket.io": "^3.0.2",
"@types/socket.io-client": "^3.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^3.0.0",
"concurrently": "^7.6.0",
"eslint": "^8.32.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"puppeteer": "^19.6.2",
"rimraf": "^4.1.2",
"rollup": "^3.7.3",
"socket.io": "^4.6.1",
"socket.io-client": "^4.6.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.0"
},
"files": [
"./dist"
],
"lint-staged": {
"**/*.json": "yarn format",
"**/*.{js,jsx,ts,tsx}": [
"yarn lint",
"yarn format"
]
},
"keywords": [
"express",
"vite",
"integration",
"module",
"connector"
]
}