forked from exobase-inc/exobase-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "exobase-api",
"version": "0.0.1",
"scripts": {
"dev": "source ./env.sh && PORT=8440 ts-node ./src/dev.ts",
"build": "ts-node build.ts",
"token:builder": "source ./env.sh && ts-node ./src/local/createToken.ts --aud exo.builder --sub exo.builder --scopes 'deployment::read::elevated;deployment::update;instance::update::attributes;services::read;service::update'",
"token:webhook": "source ./env.sh && ts-node ./src/local/createToken.ts --aud exo.webhook --sub exo.webhook --scopes 'services::read;services::deploy'",
"make-types": "tsc --emitDeclarationOnly --declaration --outDir ./client/src"
},
"jest": {
"preset": "ts-jest",
"coverageThreshold": {
"global": {
"branches": 11,
"functions": 36,
"lines": 49,
"statements": 48
}
}
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.6",
"@types/oauth": "^0.9.1",
"@types/uuid": "^8.3.3",
"@vercel/node": "^1.12.1",
"chai": "^4.3.4",
"cmdish": "^1.1.0",
"express": "^4.17.2",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.8",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.71.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.95.0",
"@aws-sdk/s3-request-presigner": "^3.95.0",
"@exobase/auth": "^0.0.17",
"@exobase/client-builder": "^0.0.5",
"@exobase/core": "^0.0.6",
"@exobase/hooks": "^0.0.10",
"@exobase/lambda": "^0.0.14",
"@exobase/local": "^0.0.21",
"@magic-sdk/admin": "^1.3.4",
"@octokit/auth-app": "^3.6.1",
"@octokit/request": "^5.6.2",
"@octokit/webhooks-types": "^5.1.0",
"bcryptjs": "^2.4.3",
"date-fns": "^2.28.0",
"durhuman": "^0.0.0-alpha.1",
"exo-use-github-webhook": "^0.0.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.2.2",
"oauth": "^0.9.15",
"radash": "^1.14.2",
"uuid": "^8.3.2",
"yup": "^0.32.11"
}
}