-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 922 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
34
{
"name": "pathery",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"sso:dev": "aws sso login --profile=pathery-dev",
"build:lambda": "cargo lambda build --release --arm64",
"build": "turbo run build",
"check:spell": "cspell '**/*.{md,ts,rs}'",
"check": "npm run check:spell",
"version": "changeset version",
"publish": "pnpm publish -r --access public",
"release": "npm run build && pnpm run publish",
"deploy:example": "turbo run deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@changesets/cli": "^2.25.2",
"@swc/core": "^1.3.14",
"@types/node": "^18.11.9",
"aws-cdk": "^2.50.0",
"aws-cdk-lib": "^2.50.0",
"constructs": "^10.1.155",
"cspell": "^6.14.3",
"depcheck": "^1.4.3",
"ts-node": "^10.9.1",
"turbo": "^1.6.3",
"typescript": "^4.8.4"
}
}