-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "@etherspot/react-transaction-buidler",
"version": "0.26.20",
"description": "Etherspot React component.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^5.0.1",
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.15",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"babel-loader": "^8.2.5",
"chokidar": "^3.5.3",
"cssnano": "^5.1.14",
"dotenv": "^16.0.3",
"eslint": "^8.49.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"postcss-cssnext": "^3.1.1",
"postcss-nested": "^6.0.0",
"postcss-simple-vars": "^7.0.0",
"react": "^18.2.0",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.7.4"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepare": "npm run rollup:build",
"postinstall": "rm -rf node_modules/react node_modules/react-dom",
"rollup:build": "NODE_OPTIONS=--max-old-space-size=8192 rollup -c",
"rollup:watch": "rollup -c -w",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"keywords": [],
"author": "Etherspot",
"license": "MIT",
"dependencies": {
"@etherspot/prime-sdk": "1.2.11",
"@etherspot/transaction-kit": "0.5.1",
"@tippyjs/react": "^4.2.6",
"autoprefixer": "^10.4.13",
"axios": "^0.27.2",
"debounce-promise": "^3.1.2",
"ethers": "^5.6.9",
"etherspot": "^1.43.8",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react-content-loader": "^6.2.1",
"react-icons": "^4.4.0",
"react-ios-switch": "^0.1.19",
"react-router-dom": "^6.15.0",
"react-spinners": "^0.13.2",
"reflect-metadata": "^0.1.13",
"rollup-plugin-postcss": "^4.0.2",
"rxjs": "^6.6.7",
"styled-components": "^5.3.5"
},
"peerDependencies": {
"react": ">=16.8.6"
}
}