This repository has been archived by the owner on Nov 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
109 lines (109 loc) · 3.28 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
{
"name": "conflux-scan",
"version": "1.0.0",
"description": "Conflux Blockchain Explorer",
"main": "index.js",
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack.dev.config.js",
"build": "cross-env NODE_ENV=production webpack --config webpack.prod.config.js",
"prettier": "pretty-quick --staged",
"lint:staged": "lint-staged",
"lintfix": "eslint . --fix",
"lint:eslint": "eslint --ignore-path .eslintignore --fix",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"keywords": [],
"author": "Angelia",
"license": "ISC",
"lint-staged": {
"**/*.{js,json,jsx,css,less}": [
"prettier --write",
"git add"
],
"**/*.js": "npm run lint:eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged"
}
},
"dependencies": {
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@sentry/browser": "^5.5.0",
"ace-builds": "^1.4.9",
"ace-mode-solidity": "^0.1.1",
"antd": "^3.19.1",
"bignumber.js": "^9.0.0",
"classnames": "^2.2.6",
"cross-env": "^7.0.2",
"echarts": "^4.2.1",
"history": "^4.9.0",
"humanize-number": "^0.0.2",
"icon-font-loader": "^2.1.0",
"immutable": "^4.0.0-rc.12",
"intl": "^1.2.5",
"js-conflux-sdk": "^0.9.0-alpha",
"lodash": "^4.17.19",
"moment": "^2.24.0",
"numeral": "^2.0.6",
"prop-types": "^15.7.2",
"px2rem-loader": "^0.1.9",
"qrcode": "^1.3.3",
"react": "^16.8.6",
"react-ace": "^8.1.0",
"react-dom": "^16.8.6",
"react-intl": "^2.8.0",
"react-json-pretty": "^2.2.0",
"react-redux": "^7.0.2",
"react-router-dom": "^5.0.0",
"react-use": "^13.8.1",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-saga": "^1.0.2",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.87.1",
"styled-components": "^4.2.0",
"superagent": "^5.0.5",
"terser-webpack-plugin": "^2.3.5"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-plugin-import": "^1.11.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.2",
"css-loader": "^2.1.1",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.0",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.5",
"mini-css-extract-plugin": "^0.6.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prettier": "1.17.0",
"pretty-quick": "^1.10.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.0",
"webpack-cdn-plugin": "^3.1.1",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}