-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.59 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
{
"name": "echo-bridge",
"description": "The bridge between your web site and the Echo",
"version": "1.18.1",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --display-error-details --colors --mode production",
"build-ext": "cross-env EXTENSION=TRUE NODE_ENV=production webpack --display-error-details --colors --mode production",
"build-ext-dev": "cross-env EXTENSION=TRUE NODE_ENV=development webpack --progress --display-error-details --colors --mode development",
"build-dev": "cross-env NODE_ENV=development webpack --progress --display-error-details --colors --mode production",
"build-stage": "cross-env NODE_ENV=stage webpack --progress --display-error-details --colors --mode production",
"lint": "$(npm bin)/eslint 'src/**/*.jsx' 'src/**/*.js' 'extension/**/*.js' 'libs/**/*.js'",
"lint-win": "cross-env eslint 'src/**/*.jsx' 'src/**/*.js' --fix",
"copy-manifest": "copyfiles -f config/manifest.json build/src",
"test": "echo \"should run tests\""
},
"dependencies": {
"EventEmitter": "^1.0.0",
"autoprefixer": "^8.1.0",
"await-event-emitter": "^1.2.0",
"babel-runtime": "^6.26.0",
"bignumber.js": "^7.2.1",
"bs58": "^4.0.1",
"classnames": "^2.2.6",
"config": "^1.30.0",
"crypto-random-string": "^1.0.0",
"echojs-lib": "^1.13.4",
"echojs-ping": "^0.1.7",
"events": "^3.0.0",
"file-loader": "^1.1.11",
"focus-trap-react": "^4.0.1",
"history": "^4.7.2",
"immutable": "^3.8.2",
"intl": "^1.2.5",
"is-promise": "^2.1.0",
"js-sha3": "^0.8.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"prop-types": "^15.6.1",
"query-string": "^6.2.0",
"randomatic": "^3.1.1",
"react": "^16.5.2",
"react-bootstrap": "^0.32.4",
"react-copy-to-clipboard": "^5.0.1",
"react-custom-scroll": "^4.0.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^4.0.0",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-textarea-autosize": "^7.0.4",
"redux": "^3.7.2",
"redux-batched-actions": "^0.4.1",
"redux-modules": "^1.1.0",
"redux-thunk": "^2.3.0",
"scrypt-js": "^2.0.4",
"semantic-ui-react": "^0.78.3",
"uglifyjs-webpack-plugin": "^1.2.2",
"url-parse": "^1.4.7",
"utf8": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.3",
"babel-plugin-static-fs": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.5.4",
"copyfiles": "^2.1.0",
"cross-env": "^5.1.4",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"gulp-babel": "^8.0.0",
"html-webpack-plugin": "^3.0.4",
"img-loader": "^2.0.1",
"node-sass": "^4.7.2",
"raw-loader": "^3.1.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.2",
"url-loader": "^1.0.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.3.10",
"webpack-dev-middleware": "^3.4.0",
"webpack-dev-server": "^3.1.9",
"zip-webpack-plugin": "^3.0.0"
}
}