generated from W3stside/ts-react
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.85 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
{
"name": "@w3stside/wraptor",
"version": "1.3.0",
"author": "W3stside <[email protected]>",
"description": "ETH > WETH Wrapper service - also supports (beta) ERC20 tokens",
"main": "lib/index.js",
"sideEffects": false,
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w3stside/wraptor.git"
},
"files": [
"lib",
"src"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/w3stside/wraptor/issues"
},
"homepage": "https://github.com/w3stside/wraptor#readme",
"scripts": {
"clean": "rm -rf lib",
"start": "cd example && yarn install && yarn start",
"build": "yarn build:prod",
"build:dev": "yarn clean && webpack --mode=development",
"build:prod": "yarn clean && webpack --mode=production",
"build:watch": "yarn clean && webpack --watch",
"lint": "eslint ./src/*.ts ./src/**/*.ts",
"format": "prettier ./src/*.ts ./src/**/*.ts --write",
"prettify": "yarn lint && yarn format",
"packit": "yarn pack:prod",
"pack:dev": "yarn build:dev && npm pack",
"pack:prod": "yarn build && npm pack"
},
"husky": {
"hooks": {
"pre-push": "yarn prettify"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-regular-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"styled-components": "^4.3.2",
"web3-utils": "1.3.1"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@fortawesome/fontawesome-common-types": "^0.2.25",
"@types/node": "^12.7.5",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.5",
"@types/web3": "^1.2.2",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"eslint-utils": ">=1.4.1",
"husky": "^3.1.0",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^3.0.0",
"ts-loader": "^6.1.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2",
"webpack": "4.19.1",
"webpack-cli": "^3.2.1"
},
"peerDependencies": {
"react": ">= 16.8.0",
"react-dom": ">= 16.8.0"
}
}