-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.35 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
{
"name": "stacksusu",
"version": "1.0.0",
"description": "StackSUSU - Decentralized rotating savings circles on Stacks blockchain",
"type": "module",
"private": true,
"scripts": {
"test": "vitest run",
"test:watch": "chokidar \"tests/**/*.ts\" \"contracts/**/*.clar\" -c \"npm run test\"",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "cd frontend && npm run lint",
"lint:fix": "cd frontend && npm run lint:fix",
"type-check": "cd frontend && npm run type-check",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,json,md}\"",
"check": "npm run lint && npm run type-check && clarinet check",
"check:all": "npm run check && npm test",
"dev": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"clean": "cd frontend && npm run clean && rm -rf node_modules/.cache",
"setup": "npm install && cd frontend && npm install",
"prepare": "husky install || true",
"update-deps": "npm update && cd frontend && npm update"
},
"author": "StackSUSU Team",
"license": "MIT",
"dependencies": {
"@hirosystems/clarinet-sdk": "^3.8.1",
"@stacks/clarinet-sdk": "^3.9.0",
"@types/node": "^24.4.0",
"chokidar-cli": "^3.0.0",
"vitest": "^4.0.7",
"vitest-environment-clarinet": "^3.0.0"
}
}