-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "spectre",
"version": "0.0.0",
"description": "Spectre liquidity protocol on Aleo: Stake credits, earn rewards, and borrow assets",
"repository": {
"type": "git",
"url": "https://github.com/spectrehq/spectre.git"
},
"private": true,
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,css,md,mdx}": "prettier --write"
},
"scripts": {
"build": "pnpm recursive run build",
"dev": "mprocs",
"dev:ui": "pnpm --filter 'ui' run dev",
"prepare": "husky",
"test": "pnpm recursive run test",
"lint": "pnpm prettier:check && eslint . --ext .ts --ext .tsx",
"prettier": "prettier --write '**/*.{ts,tsx,css,md,mdx}'",
"prettier:check": "prettier --check '**/*.{ts,tsx,css,md,mdx}'",
"postinstall": "cp packages/ui/assets/aleo_wasm.wasm packages/ui/node_modules/@aleohq/wasm/dist/assets/aleo_wasm.wasm"
},
"devDependencies": {
"@types/debug": "4.1.7",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"mprocs": "^0.6.4",
"prettier": "3.2.5",
"rimraf": "^3.0.2",
"typescript": "5.4.2"
},
"pnpm": {
"patchedDependencies": {
"@aleohq/sdk@0.6.9": "patches/@aleohq__sdk@0.6.9.patch",
"@aleohq/wasm@0.6.9": "patches/@aleohq__wasm@0.6.9.patch"
}
}
}