forked from apotdevin/thunderhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
142 lines (142 loc) · 5.02 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "thunderhub",
"version": "0.6.2",
"description": "",
"main": "index.js",
"scripts": {
"bs": "yarn build && yarn start",
"dev": "cross-env NODE_OPTIONS='--insecure-http-parser' next",
"dev:compatible": "next",
"build": "next build",
"start": "cross-env NODE_OPTIONS='--insecure-http-parser' next start",
"start:two": "cross-env NODE_OPTIONS='--insecure-http-parser' next start -p 3001",
"start:compatible": "next start",
"start:compatible:two": "next start -p 3001",
"lint": "eslint */**/*.{js,ts,tsx} --quiet --fix",
"prettier": "prettier --write **/*.{ts,tsx,js,css,html}",
"release": "standard-version",
"release:push": "standard-version && git push --follow-tags origin master",
"release:test": "standard-version --dry-run",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master",
"analyze": "cross-env ANALYZE=true next build",
"storybook": "start-storybook -p 6006 -c .storybook",
"generate": "graphql-codegen --config codegen.yml",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build:image": "docker build --no-cache -t apotdevin/thunderhub:test-amd64 .",
"build:32": "docker build --no-cache -f arm32v7.Dockerfile -t apotdevin/thunderhub:test-arm32v7 .",
"build:64": "docker build -f arm64v8.Dockerfile -t apotdevin/thunderhub:test-arm64v8 .",
"build:manifest": "docker manifest create apotdevin/thunderhub:test apotdevin/thunderhub:test-amd64 apotdevin/thunderhub:test-arm32v7 apotdevin/thunderhub:test-arm64v8",
"upgrade-latest": "yarn upgrade-interactive --latest",
"tsc": "tsc"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@graphql-codegen/near-operation-file-preset": "^1.13.5",
"apollo-boost": "^0.4.9",
"apollo-server-micro": "^2.13.1",
"base64url": "^3.0.1",
"cookie": "^0.4.1",
"crypto-js": "^4.0.0",
"date-fns": "^2.14.0",
"graphql": "^15.0.0",
"graphql-iso-date": "^3.6.1",
"graphql-rate-limit": "^2.0.1",
"graphql-tag": "^2.10.3",
"intersection-observer": "^0.10.0",
"js-cookie": "^2.2.1",
"js-yaml": "^3.13.1",
"jsonwebtoken": "^8.5.1",
"ln-service": "^48.1.0",
"lodash.debounce": "^4.0.8",
"lodash.groupby": "^4.6.0",
"lodash.merge": "^4.6.2",
"next": "^9.4.1",
"next-with-apollo": "^5.0.1",
"numeral": "^2.0.6",
"qrcode.react": "^1.0.0",
"react": "^16.13.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-intersection-observer": "^8.26.2",
"react-qr-reader": "^2.2.1",
"react-spinners": "^0.8.3",
"react-spring": "^8.0.27",
"react-toastify": "^6.0.4",
"react-tooltip": "^4.2.6",
"styled-components": "^5.1.0",
"styled-react-modal": "^2.0.1",
"styled-theming": "^2.2.0",
"underscore": "^1.10.2",
"uuid": "^8.0.0",
"victory": "^34.3.6",
"winston": "^3.2.1",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@graphql-codegen/cli": "^1.13.5",
"@graphql-codegen/introspection": "1.13.5",
"@graphql-codegen/typescript": "1.13.5",
"@graphql-codegen/typescript-operations": "^1.13.5",
"@graphql-codegen/typescript-react-apollo": "1.13.5",
"@graphql-codegen/typescript-resolvers": "1.13.5",
"@next/bundle-analyzer": "^9.4.1",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-viewport": "^5.3.18",
"@storybook/react": "^5.3.18",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.0.1",
"@types/react": "^16.9.35",
"@types/styled-components": "^5.1.0",
"@types/styled-theming": "^2.2.3",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-jest": "^26.0.1",
"babel-loader": "^8.1.0",
"babel-plugin-inline-react-svg": "^1.1.1",
"babel-plugin-styled-components": "^1.10.7",
"babel-preset-react-app": "^9.1.2",
"cross-env": "^7.0.2",
"devmoji": "^2.1.9",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.13.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"fast-diff": "^1.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.4",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"typescript": "^3.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "devmoji -e",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.+(ts|tsx)": [
"prettier --write",
"jest --bail --findRelatedTests",
"eslint --fix"
]
}
}