ggez-banking-sdk 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/package.json +47 -0
package/README.md
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ggez-banking-sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "A Node.js package to handle all REST endpoints (update, delete, get, post) for an object and return the updated object. Simplify the process of managing CRUD operations with this efficient and easy-to-use package.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"/dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
|
+
"build": "tsc --build",
|
|
13
|
+
"start": "react-app-rewired start"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"REST",
|
|
17
|
+
"CRUD",
|
|
18
|
+
"API",
|
|
19
|
+
"endpoints",
|
|
20
|
+
"update",
|
|
21
|
+
"delete",
|
|
22
|
+
"get",
|
|
23
|
+
"post",
|
|
24
|
+
"Node.js"
|
|
25
|
+
],
|
|
26
|
+
"author": "GGEZ1 Foundation DAO LLC",
|
|
27
|
+
"license": "ISC",
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@keplr-wallet/types": "^0.12.39",
|
|
30
|
+
"@types/qs": "^6.9.9",
|
|
31
|
+
"clientjs": "^0.2.1",
|
|
32
|
+
"dayjs": "^1.11.10",
|
|
33
|
+
"dotenv": "^16.3.1",
|
|
34
|
+
"qs": "^6.11.2",
|
|
35
|
+
"react": "^18.2.0",
|
|
36
|
+
"uuid": "^9.0.1"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/axios": "^0.14.0",
|
|
40
|
+
"@types/jest": "^29.5.6",
|
|
41
|
+
"@types/node": "^20.8.8",
|
|
42
|
+
"@types/react": "^18.2.35",
|
|
43
|
+
"axios": "^1.5.1",
|
|
44
|
+
"jest": "^29.7.0",
|
|
45
|
+
"ts-jest": "^29.1.1"
|
|
46
|
+
}
|
|
47
|
+
}
|