-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.72 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
{
"name": "@lifeomic/turbo-remote-cache",
"version": "0.0.0",
"license": "MIT",
"description": "remote cache server for turbo repo",
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/lifeomic/turbo-remote-cache",
"bin": {
"start-turbo-cache-server": "dist/bin/start_server.js"
},
"files": [
"dist/bin/*",
"dist/src/*",
"package.json",
"README.md"
],
"scripts": {
"build": "tsc",
"start": "pm2 start dist/bin/start_server.js --name turbo-cache",
"stop": "pm2 stop turbo-cache",
"ts-type-check": "",
"clean": "rm -rf ./dist",
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache --ext .ts . --max-warnings 0",
"prettier": "prettier",
"test": "jest --silent"
},
"dependencies": {
"@aws-sdk/client-s3": "3.465.0",
"@koa/router": "^12.0.1",
"koa": "^2.14.1"
},
"devDependencies": {
"@aws-sdk/util-stream-node": "3.374.0",
"@swc/core": "^1.3.102",
"@swc/jest": "^0.2.29",
"@types/koa": "^2.13.12",
"@types/koa__router": "^12.0.4",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"pm2": "^4.0.0",
"semantic-release": "^19.0.3",
"supertest": "^6.3.3",
"ts-node": "^8.0.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
}
}
}