forked from reown-com/appkit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.54 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": "web3connect",
"version": "1.0.0-beta.22",
"description": "A single Web3 / Ethereum provider solution for all Wallets",
"keywords": [
"web3",
"crypto",
"ethereum",
"web3connect",
"metamask",
"walletconnect",
"squarelink",
"portis",
"fortmatic"
],
"author": "Web3Connect <web3connect.com>",
"license": "LGPL-3.0",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/web3connect/web3connect.git"
},
"bugs": {
"url": "https://github.com/web3connect/web3connect/issues"
},
"scripts": {
"clean": "rm -rf lib",
"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 run bootstrap",
"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",
"routine": "npm run clean:all && npm run bootstrap && npm run check"
},
"husky": {
"hooks": {
"pre-push": "npm run check"
}
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/qr-image": "^3.2.1",
"@types/react": "^16.7.20",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "4.1.8",
"archiver": "^3.0.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",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.1"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "4.2.0",
"url-loader": "^1.1.2"
}
}