-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "hot-reload",
"version": "1.0.0",
"description": "Hot-reload server demo, based on server-sent events (SSE)",
"scripts": {
"/* USAGE SECTION */": "",
"express-server": "npx ts-node express-server.ts",
"koa-server": "npx ts-node koa-server.ts",
"/* DEV SECTION */": "",
"check": "npm run lint && npm run prettier",
"lint": "eslint .",
"prepare": "husky install",
"prettier": "prettier --check --ignore-unknown .",
"prettier:fix": "prettier --write --ignore-unknown ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sapachev/hot-reload.git"
},
"keywords": [
"hot-reload",
"sse",
"server-sent",
"events",
"koa"
],
"author": "Pavel Sapachev",
"license": "ISC",
"bugs": {
"url": "https://github.com/sapachev/hot-reload/issues"
},
"homepage": "https://github.com/sapachev/hot-reload#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3"
},
"dependencies": {
"@types/chokidar": "^2.1.3",
"@types/express": "^4.17.21",
"@types/koa": "^2.13.11",
"@types/mime-types": "^2.1.4",
"chokidar": "^3.5.3",
"express": "^4.18.2",
"koa": "^2.14.2",
"mime-types": "^2.1.35",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown ."
}
}