-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.03 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.03 KB
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
64
65
66
{
"private": false,
"name": "@agnostack/custom-integration-reference",
"version": "1.0.2",
"author": "agnoStack Dev <developers@agnostack.com> (https://agnostack.com)",
"owner": "agnoStack",
"description": "Reference implementation for agnoStack custom integration.",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/agnostack/custom-integration-reference#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/agnostack/custom-integration-reference.git"
},
"engines": {
"node": ">=22.x"
},
"packageManager": "pnpm@8.15.4",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"expo",
"firebase-admin",
"http-proxy",
"next",
"react",
"react-dom",
"react-native",
"react-is"
]
}
},
"scripts": {
"nx": "nx",
"build": "sam build",
"deploy": "sam deploy",
"deploy:guided": "pnpm run deploy --guided",
"release:dev": "pnpm run build && pnpm run deploy --config-env dev",
"release:staging": "pnpm run build && pnpm run deploy --config-env staging",
"release:prod": "pnpm run build && pnpm run deploy --config-env prod",
"release:instance1": "pnpm run build && pnpm run deploy --config-env instance1",
"release:instance2": "pnpm run build && pnpm run deploy --config-env instance2",
"dev": "sam local start-api --config-env dev",
"watch": "nx run dev-ngrok --port=4000",
"watch:x86": "nx run dev-ngrok-x86 --port=4000",
"generate-keypair": "node scripts/generate-keypair.js"
},
"dependencies": {
"@agnostack/env": "latest",
"@agnostack/verifyd": "latest",
"isomorphic-webcrypto": "2.x",
"raw-body": "2.x"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "13.x",
"@semantic-release/release-notes-generator": "14.x",
"chalk": "4.x",
"dotenv": "17.x",
"ngrok": "latest",
"nx": "latest",
"semantic-release": "25.x",
"semantic-release-export-data": "1.x"
},
"publishConfig": {
"access": "public"
}
}