-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 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
42
43
44
45
46
47
48
49
50
{
"name": "marketplace",
"version": "0.0.0",
"author": {
"name": "Friedger Müffke",
"email": "[email protected]"
},
"repository": "https://github.com/friedger/marketplace.git",
"private": true,
"engines": {
"node": ">=12"
},
"scripts": {
"test": "mocha",
"test:watch": "mocha --watch"
},
"devDependencies": {
"@stacks/network": "1.2.2",
"@stacks/transactions": "^1.3.5",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@blockstack/clarity": "^0.3.10",
"@blockstack/clarity-native-bin": "^0.3.10",
"@stacks/blockchain-api-client": "^0.55.2",
"@stacks/encryption": "^1.2.3",
"@stacks/keychain": "^1.3.5",
"@stacks/stacking": "^1.3.5",
"c32check": "^1.1.2",
"cross-fetch": "^3.0.6"
},
"mocha": {
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"extension": [
"ts",
"clar"
],
"timeout": 0,
"recursive": true
}
}