forked from Conflux-Chain/conflux-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.62 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
{
"name": "react-tslint-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env REACT_APP_CONFIG_ENV=prod react-app-rewired start",
"build": "cross-env REACT_APP_CONFIG_ENV=prod react-app-rewired build",
"dev": "cross-env REACT_APP_CONFIG_ENV=dev react-app-rewired start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint:ts": "tsc -p tsconfig.prod.json --noEmit && tslint -c tslint.json '@/**/*.{ts,tsx}' --fix --format verbose",
"lint:scss": "stylelint 'src/**/*.scss' --fix",
"lint:css": "stylelint 'src/**/*.css' 'src/**/*.scss' 'src/**/*.less' --fix"
},
"dependencies": {
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.2.1",
"axios": "^0.18.0",
"bignumber.js": "^9.0.0",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"conflux-web": "^0.1.9",
"dva-core": "^1.4.0",
"http-proxy-middleware": "^0.19.1",
"kiwi-intl": "^1.2.4",
"prettier": "^1.18.2",
"qrcode.react": "^0.9.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.1.1",
"typescript": "^3.4.5"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.8.4",
"@types/react-redux": "^7.0.9",
"@types/react-router-dom": "^4.3.4",
"connected-react-router": "^6.4.0",
"cross-env": "^5.2.0",
"customize-cra": "^0.2.12",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"node-sass": "^4.12.0",
"pretty-quick": "^1.10.0",
"react-app-rewired": "^2.1.3",
"react-hot-loader": "^4.8.7",
"stylelint": "^10.0.1",
"stylelint-config-recess-order": "^2.0.2",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.8.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"tslint-react": "^4.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"resolutions": {
"confluxjs-transaction": "0.0.1-alpha.2",
"confluxjs-util": "0.0.1-alpha.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "cross-env lint-staged"
}
},
"lint-staged": {
"ignore": [
"node_modules/*"
],
"linters": {
"*.{ts,tsx}": [
"pretty-quick --staged",
"npm run lint:ts",
"git add"
]
}
}
}