forked from citahub/microscope-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.36 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
{
"name": "Microscope",
"version": "2.0.0",
"description": "CITA blockchain explorer",
"engines": {
"node": "^8.10.0 || ^10.13.0 || >=11.10.1"
},
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint src/**/*.{js,jsx,ts,tsx} --fix",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint src/**/*.{js,jsx,ts,tsx} --fix",
"git add"
]
},
"keywords": [],
"author": "Rivtower",
"dependencies": {
"@citahub/cita-sdk": "^1.0.1",
"@types/echarts": "^4.1.9",
"@types/history": "^4.7.2",
"@types/react": "^16.7.18",
"@types/react-dom": "^16.0.11",
"@types/react-intl": "^2.3.14",
"@types/react-redux": "^7.1.1",
"@types/react-router": "^5.0.2",
"@types/react-router-redux": "^5.0.18",
"@types/redux-actions": "^2.3.1",
"@types/redux-logger": "^3.0.6",
"@types/web3-eth-abi": "^1.0.0",
"@typescript-eslint/parser": "^1.11.0",
"autoprefixer": "^9.5.1",
"babel-core": "^6.26.0",
"babel-loader": "^8.0.6",
"babel-plugin-css-modules-transform": "^1.6.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-stylus": "0.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "6.24.1",
"babel-register": "^6.26.0",
"bootstrap": "^4.1.3",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.0.0",
"echarts": "^4.1.0",
"echarts-for-react": "2.0.15-beta.0",
"es6-promise": "^4.2.4",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gh-pages": "^2.0.1",
"history": "^4.9.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"isomorphic-fetch": "^2.2.1",
"key-mirror": "^1.0.1",
"moment": "^2.24.0",
"poststylus": "^1.0.0",
"query-string": "^6.8.0",
"rc-pagination": "^1.17.8",
"rc-select": "^9.1.5",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-intl": "^2.4.0",
"react-json-view": "^1.19.1",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-router-redux": "^4.0.8",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"style-loader": "^0.23.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sw-precache-webpack-plugin": "^0.11.5",
"ts-loader": "^6.0.4",
"typescript": "^3.2.2",
"web3-eth-abi": "^1.0.0-beta.55",
"webpack": "^4.42.0",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"@cryptape/sdk-ts-config": "0.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-typescript": "^0.14.0",
"lint-staged": "^9.0.2",
"prettier": "^1.16.0",
"typescript-eslint-parser": "^22.0.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-dev-server": "^3.10.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}