-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 2.74 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
{
"name": "@etherspot/transaction-kit",
"description": "React Etherspot Transaction Kit",
"version": "0.15.2",
"main": "dist/cjs/index.js",
"scripts": {
"rollup:build": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"rollup:watch": "rimraf ./node_modules/react ./node_modules/react-dom && rollup -c -w",
"test": "jest __tests__ --silent --detectOpenHandles",
"test:watch": "jest --watch",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/etherspot/transaction-kit.git"
},
"keywords": [],
"author": "Etherspot",
"license": "MIT",
"bugs": {
"url": "https://github.com/etherspot/transaction-kit/issues"
},
"homepage": "https://github.com/etherspot/transaction-kit#readme",
"dependencies": {
"@etherspot/eip1271-verification-util": "0.1.2",
"@etherspot/modular-sdk": "2.0.0",
"@etherspot/prime-sdk": "1.8.1",
"@ethersproject/abi": "^5.7.0",
"@lifi/types": "^9.2.0",
"buffer": "^6.0.3",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"ethers": "^5.6.9",
"lodash": "^4.17.21",
"prettier": "^3.3.3"
},
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"testEnvironment": "jsdom",
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@jest/globals": "^29.3.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/react": "^14.3.1",
"@types/jest": "^29.2.5",
"@types/lodash.uniq": "^4.5.7",
"@types/react": "^18.3.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.3.1",
"babel-loader": "^8.2.5",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react": "^7.35.1",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.3.1",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.3",
"typescript": "^4.9.5"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"peerDependencies": {
"react": ">=16.13.0"
}
}