-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "pickup",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "sst start",
"build": "sst build",
"deploy": "sst deploy",
"remove": "sst remove",
"console": "sst console",
"typecheck": "tsc --noEmit",
"lint": "ts-standard",
"test": "SST_APP=NOSUCH SST_STAGE=NOSUCH LOG_LEVEL=fatal ava --serial",
"test:debug": "DEBUG=testcontainers* SST_APP=NOSUCH SST_STAGE=NOSUCH ava --serial",
"openapi-types": "npx openapi-typescript https://raw.githubusercontent.com/ipfs/pinning-services-api-spec/main/ipfs-pinning-service.yaml --output api/schema-gen.ts"
},
"devDependencies": {
"@serverless-stack/cli": "^1.18.4",
"@serverless-stack/node": "^1.18.4",
"@serverless-stack/resources": "^1.18.4",
"@tsconfig/node16": "^1.0.2",
"@typescript-eslint/experimental-utils": "^5.29.0",
"ava": "^4.3.1",
"nock": "13.3.0",
"testcontainers": "^8.10.1",
"ts-node": "^10.8.2",
"ts-standard": "^11.0.0",
"typescript": "^4.7.2"
},
"workspaces": [
"api",
"pickup",
"validator"
],
"dependencies": {
"@aws-cdk/aws-apigatewayv2-alpha": "^2.50.0-alpha.0",
"aws-cdk-lib": "2.50.0"
},
"ts-standard": {
"ignore": [
"api/schema-gen.ts"
]
},
"ava": {
"files": [
"!api/test/__data"
],
"extensions": {
"ts": "module",
"js": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"engines": {
"node": ">=16.14"
}
}