-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
{
"name": "swr-cache-proxy",
"license": "BSD-2-Clause",
"scripts": {
"build": "$npm_execpath run clean && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"dev": "tsc --watch --preserveWatchOutput -p tsconfig.build.json",
"lint": "run-p lint:eslint lint:tsc",
"lint:eslint": "eslint --max-warnings 0 src/ package.json",
"lint:tsc": "tsc --noEmit",
"postinstall": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"start": "node dist/index.js"
},
"dependencies": {
"commander": "^11.0.0",
"express": "^4.18.2",
"fresh": "^0.5.2",
"fs-extra": "^11.1.1",
"typescript": "^5.2.2",
"undici": "^5.24.0"
},
"devDependencies": {
"@comet/eslint-config": "^4.4.1",
"@types/express": "^4.17.17",
"@types/fresh": "^0.5.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@types/wait-on": "^5.3.1",
"eslint": "^8.48.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-junit": "^16.0.0",
"node-mocks-http": "^1.13.0",
"npm-run-all": "^4.1.5",
"portfinder": "^1.0.32",
"prettier": "^2.0.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"wait-on": "^7.0.1"
}
}