-
Notifications
You must be signed in to change notification settings - Fork 78
/
Copy pathpackage.json
207 lines (207 loc) · 6.19 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"name": "iotex-explorer",
"version": "1.2.0",
"description": "Frontend website for iotex-core blockchain",
"main": "server.js",
"scripts": {
"start": "ts-node --transpile-only ./server.ts",
"test": "npm run lint && npm run cover",
"check-coverage": "nyc check-coverage --lines 65 --functions 60 --Statements 65",
"ava": "TS_NODE_TRANSPILE_ONLY=true NODE_ENV=test ava",
"watch": "gulp watch",
"build": "gulp build",
"build-production": "NODE_ENV=production gulp build",
"lint": "pretty-quick --staged && tslint --fix --project tsconfig.json -t stylish && yamllint ./translations/*.yaml",
"postinstall": "npm run bp && npm run doc",
"cover": "NODE_ENV=test tsc && nyc npm run ava",
"size": "ls -lh dist/",
"bp": "npm run build-production && npm run size",
"kill": "lsof -n -i4TCP:4004 | grep LISTEN | awk '{ print $2 }' | xargs kill",
"doc": "graphdoc --config ./package.json --force",
"storybook": "start-storybook -s ./dist -p 6006",
"build-storybook": "build-storybook",
"changelog-major": "build-changelog --major",
"changelog-minor": "build-changelog --minor",
"changelog-patch": "build-changelog --patch"
},
"graphdoc": {
"ga": "UA-111756489-2",
"graphiql": "/api-gateway/",
"logo": "<a href=\"/\" target=\"_blank\" style=\"display:block;padding:1rem 3rem\"><img src=\"/favicon.png\" /></a>",
"schemaFile": "./src/api-gateway/api-gateway.graphql",
"output": "./dist/doc/api-gateway/",
"baseUrl": "./"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm t"
}
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts",
"src/**/__tests__/**"
],
"reporter": [
"lcov",
"text",
"text-summary",
"cobertura"
],
"extension": [
".tsx",
".ts"
],
"cache": true,
"temp-directory": "./coverage/.nyc_output"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/iotexproject/iotex-explorer.git"
},
"keywords": [],
"author": "Tian Pan (https://tianpan.co)",
"contributors": [
"Hung Le",
"uu-z",
"Anshuo"
],
"license": "Apache",
"bugs": {
"url": "https://github.com/iotexproject/iotex-explorer/issues"
},
"homepage": "https://github.com/iotexproject/iotex-explorer#readme",
"devDependencies": {
"@2fd/graphdoc": "2.4.0",
"@storybook/addon-actions": "5.1.3",
"@storybook/addon-links": "5.1.3",
"@storybook/addons": "5.1.3",
"@storybook/react": "5.1.3",
"@types/platform": "1.3.2",
"apollo-codegen": "0.20.2",
"ava": "2.1.0",
"awesome-typescript-loader": "5.2.1",
"build-changelog": "2.1.2",
"fancy-log": "1.3.3",
"glob": "7.1.4",
"gulp": "4.0.2",
"gulp-less": "4.0.1",
"gulp-livereload": "4.0.1",
"gulp-nodemon": "2.4.2",
"gulp-sass": "4.0.2",
"husky": "2.4.0",
"nyc": "14.1.1",
"plugin-error": "1.0.1",
"prettier": "1.18.2",
"pretty-quick": "1.11.0",
"source-map-loader": "0.2.4",
"sw-precache-webpack-plugin": "0.11.5",
"terser-webpack-plugin": "1.3.0",
"tslint": "5.17.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "6.1.1",
"tslint-require-connnect-typing": "1.0.1",
"webpack": "4.31.0",
"webpack-bundle-analyzer": "3.3.2",
"webpack-cli": "3.3.3",
"webpack-manifest-plugin": "2.0.4",
"yaml-lint": "1.2.4"
},
"dependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.3.3",
"@babel/register": "7.4.4",
"@sendgrid/client": "6.4.0",
"@types/bcryptjs": "2.4.2",
"@types/config": "0.0.34",
"@types/dateformat": "3.0.0",
"@types/dotenv": "6.1.1",
"@types/dottie": "2.0.3",
"@types/form-serialize": "0.7.1",
"@types/fromnow": "3.0.0",
"@types/graphql": "14.2.0",
"@types/graphql-iso-date": "3.3.1",
"@types/koa": "2.0.48",
"@types/node": "11.13.11",
"@types/node-fetch": "2.3.5",
"@types/react": "16.8.18",
"@types/react-outside-click-handler": "1.2.0",
"@types/react-redux": "7.0.3",
"@types/react-router": "4.4.5",
"@types/react-router-dom": "4.3.3",
"@types/uuid": "3.4.4",
"@types/validator": "10.11.0",
"antd": "3.14.0",
"apollo-cache-inmemory": "1.6.2",
"apollo-client": "2.6.2",
"apollo-link-error": "1.1.10",
"apollo-link-http": "1.5.14",
"apollo-server-koa": "2.6.2",
"axios": "0.19.0",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-react-require": "3.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"bcryptjs": "2.4.3",
"bignumber.js": "9.0.0",
"casual": "1.6.2",
"config": "3.1.0",
"dateformat": "3.0.3",
"dayjs": "1.8.14",
"dotenv": "8.0.0",
"dottie": "2.0.1",
"export-from-json": "1.1.4",
"form-serialize": "0.7.2",
"fromnow": "3.0.0",
"global": "4.4.0",
"graphql": "14.3.1",
"graphql-iso-date": "3.6.1",
"graphql-tag": "2.10.1",
"graphql-tools": "4.0.4",
"iotex-antenna": "0.15.3",
"iotex-react-block-producers": "2.1.1",
"iotex-react-language-dropdown": "2.2.0",
"is-browser": "2.1.0",
"is-electron": "2.2.0",
"isomorphic-unfetch": "3.0.0",
"koa-server-http-proxy": "0.1.0",
"lodash.partition": "4.6.0",
"node-fetch": "2.6.0",
"onefx": "1.4.10",
"platform": "1.3.5",
"process": "0.11.10",
"qrcode.react": "0.9.3",
"react": "16.8.6",
"react-apollo": "2.5.6",
"react-dom": "16.8.6",
"react-outside-click-handler": "1.2.3",
"react-redux": "5.1.1",
"react-router": "4.3.1",
"react-router-breadcrumbs-hoc": "3.2.0",
"react-router-dom": "4.3.1",
"redux": "4.0.1",
"reflect-metadata": "0.1.13",
"safe-json-globals": "2.1.0",
"shader": "1.0.0",
"styletron-engine-atomic": "1.1.2",
"text-to-clipboard": "3.0.5",
"ts-node": "8.1.0",
"type-graphql": "0.17.4",
"typescript": "3.4.5",
"uuid": "3.3.2",
"validator": "10.11.0"
},
"engines": {
"node": "10.16.0",
"npm": "6.9.0"
},
"private": true
}