This repository has been archived by the owner on Sep 3, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
81 lines (81 loc) · 2.43 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
{
"name": "qrypto",
"private": true,
"scripts": {
"clean": "rm -rf dist",
"start": "yarn clean && mkdir dist && ./scripts/create-empty-thunk.sh && webpack --config webpack.dev.config.js --watch --devtool eval-cheap-module-source-map & yarn css-types -w",
"build": "yarn clean && webpack -p --config webpack.prod.config.js && ./scripts/create-empty-thunk.sh",
"css-types": "tcm src",
"postinstall": "yarn css-types",
"linter": "tslint --project .",
"linter-fix": "tslint --fix --project .",
"precommit": "lint-staged",
"prepush": "npm run linter-fix"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run linter-fix",
"git add"
]
},
"devDependencies": {
"@ceoimon/typed-css-modules": "^0.0.1",
"@material-ui/core": "^1.2.2",
"@types/chrome": "^0.0.63",
"@types/classnames": "^2.2.4",
"@types/prop-types": "^15.5.3",
"@types/react": "^16.0.41",
"@types/react-dom": "^16.0.4",
"@types/react-router-dom": "^4.2.7",
"autoprefixer": "^8.2.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass": "^4.9.3",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-loader": "^2.1.3",
"postcss-modules": "^1.1.0",
"react-router-dom": "^4.3.1",
"sass-loader": "^7.0.3",
"style-loader": "^0.20.3",
"ts-loader": "^4.4.2",
"tslint": "^5.9.1",
"tslint-loader": "^3.6.0",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"web-ext-types": "^2.0.1",
"webpack": "4.16.1",
"webpack-cli": "^3.1.0",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"@material-ui/icons": "^1.1.0",
"@types/bip39": "^2.4.0",
"@types/deep-equal": "^1.0.1",
"@types/history": "^4.6.2",
"@types/lodash": "^4.14.110",
"@types/qrcode.react": "^0.8.0",
"@types/scryptsy": "^2.0.0",
"@types/secp256k1": "^3.5.0",
"axios": "^0.18.0",
"bignumber.js": "^7.2.1",
"chrome-call": "^3.0.0",
"classnames": "^2.2.6",
"deep-equal": "^1.0.1",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"mobx-react-router": "^4.0.4",
"moment": "^2.22.2",
"qrcode.react": "^0.8.0",
"qtumjs-wallet": "^0.2.1",
"qweb3": "^1.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"secp256k1": "^3.5.0",
"wif": "^2.0.6"
}
}