-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dev-environment",
"version": "1.0.0",
"description": "Stacks local development environment for clarity contracts",
"main": "index.js",
"scripts": {
"unit-test": "jest counter.test.ts",
"clarinet-test": "jest clarinet.test.ts",
"integration": "jest integration.test.ts",
"generate": "ts-node scripts/abi.ts",
"deploy": "ts-node scripts/deploy.ts",
"eol": "npx eolConverter \"contracts/*.clar\"",
"pretty": "prettier --write \"./**/*.{js,jsx,ts,json}\"",
"doc": "npx @appnest/readme generate --line=https://raw.githubusercontent.com/dorucioclea/stacks-dev-env/master/assets/line.png"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dorucioclea/stacks-dev-env.git"
},
"keywords": [
"stacks",
"blockchain",
"clarity",
"integration",
"tests",
"environment"
],
"contributors": [
{
"name": "Doru Cioclea Octavian",
"url": "https://github.com/dorucioclea",
"img": "https://avatars.githubusercontent.com/u/39082034?s=460&v=4",
"info": [
"🔥"
]
},
{
"name": "You?",
"img": "https://joeschmoe.io/api/v1/random",
"url": "https://github.com/dorucioclea/stacks-dev-env/blob/master/CONTRIBUTING.md"
}
],
"author": "DoruC",
"license": "ISC",
"bugs": {
"url": "https://github.com/dorucioclea/stacks-dev-env/issues"
},
"homepage": "https://github.com/dorucioclea/stacks-dev-env#readme",
"devDependencies": {
"@appnest/readme": "^1.2.7",
"@ltd/j-toml": "^1.12.2",
"@stacks/wallet-sdk": "^1.0.0-wallet-sdk.4",
"@types/chai": "^4.2.17",
"@types/node": "15.12.5",
"@types/node-fetch": "2.5.10",
"@types/webpack-env": "^1.16.0",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"dotenv-webpack": "6.0.2",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typescript": "^3.5.2"
},
"dependencies": {
"@blockstack/clarity": "^0.3.15",
"@blockstack/clarity-native-bin": "^0.3.15",
"@stacks/auth": "^1.2.3",
"@stacks/blockchain-api-client": "^0.34.1",
"@stacks/common": "^2.0.0-beta.0",
"@stacks/network": "^1.2.2",
"@stacks/stacking": "^2.0.0-beta.0",
"@stacks/stacks-blockchain-api-types": "^0.1.0-microblocks.0",
"@stacks/storage": "^2.0.0-beta.0",
"@stacks/transactions": "^2.0.0-beta.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"ajv": "^4.11.5",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.2.0",
"blockstack": "^19.2.2",
"bn.js": "^4.12.0",
"create-ts-index": "^1.13.6",
"eol-converter-cli": "^1.0.8",
"neverthrow": "4.2.1",
"node-fetch": "2.6.1",
"prettier": "^2.3.2"
}
}