-
-
Notifications
You must be signed in to change notification settings - Fork 556
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "scripts",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": {
"./env": {
"types": "./types.d.ts",
"default": "./env.js"
}
},
"scripts": {
"gcp:setup": "node ./gcp-setup.js",
"gh:clean": "node --no-warnings ./clean.js",
"gh:deployments": "node --no-warnings ./github.js deployments",
"gh:deployment-status": "node --no-warnings ./github.js deployment-status",
"gh:create-deployment": "node --no-warnings ./github.js create-deployment",
"gh:delete-deployment": "node --no-warnings ./github.js delete-deployment"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/register": "^7.23.7",
"@google-cloud/secret-manager": "~5.0.1",
"@google-cloud/storage": "^7.7.0",
"@octokit/rest": "^20.0.2",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.9.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.4.1",
"envars": "^1.0.2",
"execa": "^8.0.1",
"globby": "^14.0.0",
"got": "^14.2.0",
"inquirer": "^9.2.14",
"lodash-es": "^4.17.21",
"minimist": "^1.2.8",
"ora": "^8.0.1",
"server": "workspace:*",
"toml": "^3.0.0",
"ts-import": "^5.0.0-beta.0",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"vite": "~5.4.10",
"wrangler": "^3.27.0",
"zx": "^8.2.1"
},
"envars": {
"cwd": "../env"
}
}