-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
87 lines (87 loc) · 2.75 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "mintbase",
"version": "0.0.0-alpha.0",
"description": "Mintbase Typescript SDK. A library for interacting with smart contracts on the NEAR Blockchain",
"scripts": {
"build": "lerna run build --sort",
"clean": "rm -rf **/node_modules && rm -rf **/lib && rm -rf **/coverage",
"dev": "lerna run watch --stream & cd packages/app && npm run dev",
"docs": "cd docs && ./publish.sh",
"lint": "lerna run lint",
"test": "lerna run test --stream --ignore @mintbase-js/testing",
"test:integration": "lerna run test --stream --scope @mintbase-js/testing",
"unlock": "find . -name \"package-lock.json\" -exec rm -rf '{}' +",
"add:sdk": "lerna add @mintbase-js/sdk --scope @mintbase-js/auth"
},
"nodemonConfig": {
"watch": [
"src/*"
],
"ext": "ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mintbase/mintbase-js.git"
},
"files": [
"lib",
"dist"
],
"keywords": [
"NFT",
"Blockchain",
"Mintbase"
],
"author": "@nategeier",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mintbase/mintbase-js/issues"
},
"homepage": "https://github.com/Mintbase/mintbase-js#readme",
"devDependencies": {
"@babel/parser": "^7.24.6",
"@babel/preset-typescript": "^7.24.6",
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/client-preset": "1.1.1",
"@graphql-codegen/introspection": "2.2.1",
"@mintbase-js/auth": "file:packages/auth",
"@mintbase-js/data": "file:packages/data",
"@mintbase-js/react": "file:packages/react",
"@mintbase-js/rpc": "file:packages/rpc",
"@mintbase-js/sdk": "file:packages/sdk",
"@mintbase-js/storage": "file:packages/storage",
"@mintbase-js/testing": "file:packages/testing",
"@mintbase-js/wallet": "file:packages/wallet",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^25.2.3",
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.5",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-simple-import-sort": "^5.0.3",
"fetch-mock": "^9.11.0",
"graphql": "^16.6.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.2",
"lerna": "^8.0.0",
"lerna-jest": "^0.5.4",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"@near-wallet-selector/wallet-utils": "^8.9.7"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@near-wallet-selector/core": "8.9.12",
"jest-fetch-mock": "^3.0.3"
}
}