forked from trappar/turborepo-remote-cache-gh-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "turborepo-remote-cache-gh-action",
"version": "1.0.0",
"description": "A GitHub action which runs a ducktors/turborepo-remote-cache server.",
"license": "MIT",
"author": "Trappar <[email protected]>",
"scripts": {
"lint": "eslint src/**/*",
"clean": "rimraf dist",
"build": "npm-run-all clean --parallel build:*",
"build:server": "ncc build src/server.ts -o dist/server",
"build:start": "ncc build src/start.ts -o dist/start",
"build:start_and_log": "ncc build src/start_and_log.ts -o dist/start_and_log",
"build:post": "ncc build src/post.ts -o dist/post",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.0",
"get-port": "^6.1.2",
"indent-string": "^5.0.0",
"prettier": "^2.8.4",
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.13.0",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^4.1.2",
"ts-node": "^10.9.1",
"turborepo-remote-cache": "^1.13.0",
"typescript": "^4.9.5"
}
}