-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
103 lines (103 loc) · 2.68 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "defi-sdk",
"version": "0.1.9",
"description": "Zerion API Client for JS",
"main": "lib/defi-sdk.js",
"source": "./src/index.ts",
"exports": {
".": {
"require": "./lib/defi-sdk.js",
"types": "./lib/index.d.ts",
"default": "./lib/defi-sdk.modern.js"
}
},
"module": "lib/defi-sdk.module.js",
"unpkg": "lib/defi-sdk.umd.js",
"typings": "lib/index.d.ts",
"scripts": {
"start": "vite --port 3000",
"build": "microbundle",
"prepare": "husky install && npm run build",
"pretest": "npm run lint && tsc --noEmit",
"test": "npm run test:jest --",
"posttest": "npm run format",
"lint": "eslint . --cache --fix",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md}\"",
"test:jest": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"gh-pages": "gh-pages -d examples/umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeriontech/defi-sdk-js.git"
},
"keywords": [
"defi",
"sdk",
"zerion",
"api",
"client",
"react"
],
"author": "everdimension",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeriontech/defi-sdk-js/issues"
},
"homepage": "https://github.com/zeriontech/defi-sdk-js#readme",
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.10",
"@types/socket.io-client": "^1.4.36",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.24.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^5.0.0",
"husky": "^6.0.0",
"jest": "^29.7.0",
"lint-staged": "^10.5.4",
"microbundle": "^0.13.0",
"prettier": "^2.2.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.16.0",
"ts-jest": "^29.1.4",
"typescript": "^4.6.3",
"vite": "^3.2.3"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,tsx,md}": "prettier --write"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/lib/"
],
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"idb-keyval": "^6.2.0",
"lru-cache": "^7.13.1",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"regenerator-runtime": "^0.13.9",
"socket.io-client": "^2.3.0",
"store-unit": "^1.0.3"
}
}