-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.54 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.54 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
{
"name": "stackflow-tests",
"version": "1.0.0",
"description": "Run unit tests on this project.",
"type": "module",
"private": true,
"scripts": {
"deploy:testnet": "node scripts/deploy.js",
"init:stackflow": "node scripts/init-stackflow.js",
"build:ui": "node scripts/build-ui.js",
"test": "vitest run",
"test:node-utils": "vitest run -c vitest.node.config.js tests/x402-client.test.ts tests/stackflow-agent.test.ts",
"test:stackflow-node:http": "STACKFLOW_NODE_HTTP_INTEGRATION=1 vitest run tests/stackflow-node-http.integration.test.ts",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"build:stackflow-node": "tsc -p tsconfig.server.json",
"stackflow-node": "npm run build:stackflow-node && node server/dist/index.js",
"x402-gateway": "npm run build:stackflow-node && node server/dist/x402-gateway.js",
"demo:x402-e2e": "node scripts/demo-x402-e2e.js",
"demo:x402-browser": "node scripts/demo-x402-browser.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-kms": "^3.993.0",
"@stacks/clarinet-sdk": "^3.10.0",
"@stacks/connect": "^7.2.0",
"@stacks/network": "^7.2.0",
"@stacks/transactions": "^7.2.0",
"chokidar-cli": "^3.0.0",
"dotenv": "^16.4.7",
"typescript": "^5.3.3",
"vite": "^6.2.6",
"vitest": "^3.1.1",
"vitest-environment-clarinet": "^3.0.2"
},
"devDependencies": {
"@types/node": "^25.2.3",
"esbuild": "^0.25.12"
}
}