-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 987 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
33
34
35
36
37
{
"name": "@aave/sdk",
"private": true,
"version": "1.0.0",
"description": "Monorepo for developing a collection of hooks to interact with the aave pools and smart contracts",
"main": "index.js",
"repository": "[email protected]:akanoce/react-aave-sdk.git",
"author": "<[email protected]>",
"license": "MIT",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"prepare": "husky",
"lint": "turbo run lint",
"release": "yarn semantic-release",
"publish-packages": "turbo run build && changeset version && changeset publish"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"husky": "^9.0.11",
"prettier": "^3.3.1",
"semantic-release": "^24.0.0"
},
"dependencies": {
"@changesets/cli": "^2.27.5",
"turbo": "^2.0.3"
}
}