-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.24 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
42
43
{
"name": "sprintfund-tests",
"version": "1.0.0",
"description": "Run unit tests on this project.",
"type": "module",
"private": true,
"scripts": {
"test": "vitest run",
"test:frontend": "vitest run --config frontend/vitest.config.ts",
"test:report": "vitest run -- --coverage --costs",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test:report\"",
"security:audit": "bash scripts/security-audit.sh",
"prepare": "husky"
},
"lint-staged": {
"contracts/**/*.clar": [
"clarinet check --use-on-disk-deployment-plan"
],
"frontend/**/*.{ts,tsx}": [
"npm run lint --prefix frontend --",
"npm run format:check --prefix frontend --",
"bash -c 'cd frontend && npx tsc --noEmit'"
],
"frontend/**/*.{js,jsx,json,css,md}": [
"npm run format:check --prefix frontend --"
]
},
"author": "",
"license": "MIT",
"dependencies": {
"@hirosystems/clarinet-sdk": "^3.6.0",
"@stacks/transactions": "^7.2.0",
"@types/node": "^24.4.0",
"chokidar-cli": "^3.0.0",
"vitest": "^3.2.4",
"vitest-environment-clarinet": "^2.3.0"
},
"devDependencies": {
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.4.0"
}
}