forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.7 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
{
"name": "web3modal",
"version": "1.9.3",
"description": "A single Web3 / Ethereum provider solution for all Wallets",
"keywords": [
"web3",
"crypto",
"ethereum",
"web3modal",
"metamask",
"walletconnect",
"portis",
"fortmatic",
"arkane",
"torus",
"authereum",
"frame"
],
"author": "Web3Modal <web3modal.com>",
"license": "MIT",
"main": "dist/index.js",
"unpkg": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"directories": {
"dist": "dist",
"test": "test"
},
"files": [
"dist"
],
"homepage": "https://github.com/web3modal/web3modal",
"repository": {
"type": "git",
"url": "git+https://github.com/web3modal/web3modal.git"
},
"bugs": {
"url": "https://github.com/web3modal/web3modal/issues"
},
"scripts": {
"clean": "rm -rf dist",
"clean:example": "rm -rf example/build",
"clean:node_modules": "rm -rf node_modules && cd example && rm -rf node_modules",
"clean:all": "npm run clean && npm run clean:example && npm run clean:node_modules",
"bootstrap": "npm install && cd example && npm install",
"start": "npm run check && cd example && npm run start",
"build": "webpack",
"build:example": "npm run bootstrap && npm run build && cd example && npm run build",
"test": "mocha --require ./babel-polyfill.js test/**/*.spec.js",
"lint": "tslint ./src/*.ts ./src/**/*.ts",
"format": "prettier ./src/*.ts ./src/**/*.ts --write",
"check": "npm run clean && npm run lint && npm run format && npm run build && npm run test",
"reset": "npm run clean:all && npm run bootstrap && npm run check"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.11.5",
"@types/react": "^16.9.50",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^5.1.3",
"@types/web3": "^1.2.2",
"eslint": "^7.10.0",
"babel-eslint": "^10.1.0",
"chai": "^4.1.2",
"file-loader": "^3.0.1",
"husky": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"mocha": "5.2.0",
"prettier": "^1.18.2",
"terser": "^3.14.1",
"ts-loader": "^5.3.3",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.3",
"url-loader": "^1.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"detect-browser": "^5.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^5.1.1",
"tslib": "^1.10.0"
}
}