-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.03 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
66
67
68
69
70
{
"name": "react-near",
"version": "6.1.2",
"description": "",
"main": "index.js",
"typings": "./index.d.ts",
"maintainers": [
{
"name": "Maxim Schiriy"
}
],
"scripts": {
"clean": "rm -rf *.ts && rm -rf *.tsx && rm -rf *.js && rm -rf ./hooks && rm -rf ./core && rm -rf ./environment && rm -rf ./contract && rm -rf ./standards && git co HEAD -- ./codegen.js && git co HEAD -- ./codegen-ts.js && git co HEAD -- ./codegen-react-ts.js",
"build": "tsc -b",
"lint": "tslint -c tslint.json 'example/**/*.ts' --fix",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test:info": "jest --coverage",
"pretty": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "npm run clean && npm run pretty",
"...": "..."
}
},
"homepage": "https://github.com/Muzikanto/react-near/wiki",
"keywords": [
"react",
"near",
"blockchain",
"typescript",
"hooks"
],
"repository": {
"url": "https://github.com/Muzikanto/react-near"
},
"bugs": {
"url": "https://github.com/Muzikanto/react-near/issues"
},
"author": "Muzikanto",
"license": "MIT",
"peerDependencies": {
"@types/react": "^18.0.15",
"near-api-js": "^0.43.1",
"react": "^18.2.0"
},
"dependencies": {
"@near-wallet-selector/core": "^7.4.0",
"@near-wallet-selector/default-wallets": "^7.4.0",
"@near-wallet-selector/modal-ui": "^7.4.0",
"@near-wallet-selector/my-near-wallet": "^7.4.0",
"@near-wallet-selector/near-wallet": "^7.4.0",
"cookie": "^0.5.0"
},
"devDependencies": {
"@types/react-dom": "^18.0.6",
"fzstd": "^0.0.4",
"husky": "^7.0.2",
"json-schema-to-typescript": "^11.0.2",
"near-api-js": "^0.43.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.9",
"typescript": "^4.4.3"
}
}