forked from VIC452700/XFI-vault-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 822 Bytes
/
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
{
"name": "xfi",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "AWS_PROFILE=XFI sst start",
"build": "sst build",
"deploy": "AWS_PROFILE=XFI sst deploy --state staging",
"remove": "sst remove",
"console": "sst console",
"typecheck": "tsc --noEmit",
"test": "sst bind -- vitest run"
},
"devDependencies": {
"@serverless-stack/cli": "^1.18.4",
"@serverless-stack/resources": "^1.18.4",
"@tsconfig/node16": "^1.0.3",
"@types/ramda": "^0.28.20",
"aws-cdk-lib": "2.50.0",
"typescript": "^4.9.4",
"vitest": "^0.25.8"
},
"dependencies": {
"@middy/core": "^4.0.8",
"@middy/http-error-handler": "^4.0.8",
"@serverless-stack/node": "^1.18.4",
"dotenv": "^16.0.3",
"ramda": "^0.28.0"
},
"workspaces": [
"services"
]
}