-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "stacks-2-1-integration-tests",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc --build",
"test:dev": "vitest",
"test:ci": "jest --bail=1 --silent=false",
"fmt:check": "./node_modules/.bin/prettier --check .",
"fmt": "./node_modules/.bin/prettier --write ."
},
"dependencies": {
"@hirosystems/stacks-devnet-js": "^1.3.0",
"@noble/hashes": "^1.1.5",
"@noble/secp256k1": "^1.7.0",
"@scure/base": "^1.1.1",
"@scure/bip32": "^1.1.1",
"@scure/bip39": "^1.1.0",
"@stacks/common": "^6.0.0",
"@stacks/network": "^6.3.0",
"@stacks/stacking": "^6.0.2",
"@stacks/transactions": "^6.5.0",
"@types/node": "^16.7.13",
"micro-btc-signer": "^0.2.0",
"node-fetch": "^2.6.7",
"typescript": "^4.9.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@vitest/ui": "^0.25.8",
"jest": "^27.4.5",
"jest-github-actions-reporter": "^1.0.3",
"prettier": "2.8.1",
"ts-jest": "^27.1.2",
"vite": "^4.0.1",
"vitest": "^0.25.8",
"vitest-github-actions-reporter": "^0.9.0"
}
}