-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 loc) · 922 Bytes
/
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
{
"name": "marketplace",
"version": "1.0.0",
"author": {
"name": "Friedger Müffke",
"email": "[email protected]"
},
"description": "Run unit tests on this project.",
"type": "module",
"repository": "https://github.com/friedger/marketplace.git",
"private": true,
"scripts": {
"test": "vitest run",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"clarigen:init": "clarigen init",
"clarigen": "clarigen"
},
"license": "ISC",
"dependencies": {
"@clarigen/cli": "^2.1.2",
"@clarigen/core": "^2.1.2",
"@clarigen/test": "^2.1.2",
"@hirosystems/clarinet-sdk": "^2.9.0",
"@stacks/transactions": "^6.12.0",
"chokidar-cli": "^3.0.0",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vitest": "^1.3.1",
"vitest-environment-clarinet": "^2.0.0"
}
}