-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@aurora-is-near/staking",
"version": "1.6.4",
"description": "Contains logic for staking and unstaking Aurora",
"author": "Alex Mendes",
"license": "UNLICENSED",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint . --ext .js,.ts",
"test": "jest",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"build": "tsc"
},
"engines": {
"node": ">=20.9.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"files": [
"src",
"dist"
],
"sideEffects": false,
"peerDependencies": {
"react": "*"
},
"dependencies": {
"date-fns": "^4.1.0",
"ethers": "5.6.9",
"wagmi": "2.5.19"
},
"devDependencies": {
"@aurora-is-near/eslint-config": "^1.3.9",
"@aurora-is-near/semantic-release-config": "^1.1.1",
"@babel/core": "^7.17.10",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.0.0",
"@types/node": "^17.0.31",
"@types/react": "^18.3.12",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.0.0",
"prettier": "^3.2.5",
"react": "18.3.1",
"rimraf": "^3.0.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.0"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.2",
"wrap-ansi": "7.0.0"
}
}