-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 4.04 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
{
"name": "bridge-ui",
"version": "1.0.0",
"main": "index.js",
"license": "GPLv3",
"private": true,
"scripts": {
"postinstall": "rm -f node_modules/web3/index.d.ts && rm -f node_modules/web3/types.d.ts",
"start": "webpack-dev-server --config webpack.config.dev.js",
"start:testnet": "CONFIG=testnet yarn start",
"start:mainnet": "CONFIG=mainnet yarn start",
"build": "rm -rf dist/ && webpack-cli --config webpack.config.prod.js",
"build:testnet": "CONFIG=testnet yarn build",
"build:mainnet": "CONFIG=mainnet yarn build",
"stats": "rm -rf dist/ && webpack-cli --config webpack.config.prod.js --json > stats.json",
"precommit": "lint-staged",
"deploy:dev": "aws s3 sync ./dist s3://bridge-dev.leapdao.org/ --acl public-read && aws cloudfront create-invalidation --distribution-id E3UQO39J2ZIILR --paths '/*'",
"deploy:testnet": "aws s3 sync ./dist s3://testnet.leapdao.org/ --acl public-read && aws cloudfront create-invalidation --distribution-id ERDV80HEAIPI6 --paths '/*'",
"deploy:staging": "aws s3 sync ./dist s3://staging.leapdao.org/ --acl public-read && aws cloudfront create-invalidation --distribution-id E3SS3ZMHTYPNXK --paths '/*'",
"deploy:mainnet": "aws s3 sync ./dist s3://mainnet.leapdao.org/ --acl public-read && aws cloudfront create-invalidation --distribution-id E224ANE6YCE3LE --paths '/*'"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add",
"tslint --project tsconfig.json"
]
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"autoprefixer": "^9.1.3",
"babel-core": "^6.26.3",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"cache-loader": "^1.2.2",
"css-loader": "^1.0.0",
"cssnano": "^4.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^7.0.5",
"lodash.camelcase": "^4.3.0",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.12.1",
"style-loader": "^0.22.1",
"thread-loader": "^1.2.0",
"ts-loader": "^4.5.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.0.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"val-loader": "^1.1.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@types/node": "^10.9.3",
"@types/react-router": "^4.4.1",
"@types/web3": "^1.0.18",
"antd": "^3.13.2",
"autobind-decorator": "^2.1.0",
"babel-plugin-transform-typescript": "^7.0.0-alpha.19",
"babel-polyfill": "^6.26.0",
"babel-preset-typescript": "^7.0.0-alpha.19",
"big.js": "^5.2.2",
"bn.js": "^4.11.8",
"ethereumjs-util": "6.0.0",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"jsbi-utils": "^1.0.0",
"leap-core": "0.38.0",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"prop-types": "^15.6.1",
"query-string": "^6.1.0",
"react": "16.8.1",
"react-dom": "16.8.1",
"react-iframe": "^1.3.3",
"react-responsive": "^4.1.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-timeago": "^4.1.9",
"web3": "1.0.0-beta.33",
"web3-core-promievent": "1.0.0-beta.33"
}
}