-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.57 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@losslessproject/hooks",
"author": "Harmony zkDAO",
"description": "Useful hooks for Lossless Project applications",
"module": "dist/hooks.esm.js",
"version": "0.1.4",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bugs": {
"url": "https://github.com/losslessproject/issues",
"email": "[email protected]"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/losslessproject/losslessproject-hooks",
"engines": {
"node": ">=16"
},
"repository": {
"url": "https://github.com/losslessproject/losslessproject-hooks",
"type": "git"
},
"scripts": {
"start": "tsdx watch --onSuccess \"yalc push\"",
"reinstall": "rm -rf node_modules && yarn install",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"postpublish-jdsdnskjdkjsdn": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags && yarn gitwarn",
"gitwarn": "echo '*******************' && echo 'Please push your changes to Git' && echo '*******************'"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint --fix"
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"arrowParens": "always",
"trailingComma": "none"
},
"size-limit": [
{
"path": "dist/client-js.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/client-js.esm.js",
"limit": "10 KB"
}
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@losslessproject/client-js": "^0.1.0",
"@losslessproject/evm-chains-extended": "^0.1.0",
"@losslessproject/utilities": "^0.1.3",
"@pooltogether/current-pool-data": "^3.6.3",
"@pooltogether/etherplex": "^1.1.4",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^2.2.6",
"@types/lodash.memoize": "^4.1.6",
"@types/node": "^15.0.2",
"beautiful-react-hooks": "^0.35.0",
"date-fns": "^2.23.0",
"eth-revert-reason": "^1.0.3",
"ethers": "^5.6.4",
"framer-motion": "^4.1.17",
"glob": "^7.1.7",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.5",
"husky": "^7.0.2",
"jest": "^26.6.3",
"jotai": "^1.4.3",
"js-cookie": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.0",
"replace-in-files": "^3.0.0",
"size-limit": "^5.0.3",
"ts-jest": "^26.5.6",
"tsc-watch": "^4.2.9",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typedoc": "^0.22.10",
"typedoc-plugin-markdown": "^3.11.11",
"typescript": "^4.4.4"
},
"peerDependencies": {
"@losslessproject/client-js": "^0.1.0",
"@losslessproject/evm-chains-extended": "^0.1.0",
"@losslessproject/utilities": "^0.1.3",
"@pooltogether/current-pool-data": "^3.6.3",
"@pooltogether/etherplex": "^1.1.4",
"beautiful-react-hooks": "^0.35.0",
"date-fns": "^2.23.0",
"ethers": "^5.6.4",
"framer-motion": "^4.1.17",
"graphql-tag": "^2.12.5",
"jotai": "^1.4.3",
"js-cookie": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-query": "^3.34.0"
}
}