-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
105 lines (105 loc) · 3.5 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
{
"name": "codechain-wallet",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"animate.css": "^3.7.0",
"axios": "^0.18.0",
"bootstrap": "^4.1.3",
"codechain-indexer-types": "^0.10.0",
"codechain-keystore": "^0.6.1",
"codechain-sdk": "^0.7.0",
"crypto-js": "^3.1.9-1",
"deepmerge": "^2.2.1",
"extensionizer": "^1.0.1",
"file-saver": "^2.0.0-rc.3",
"i18next": "^15.0.9",
"i18next-browser-languagedetector": "^3.0.1",
"identicon.js": "^2.3.3",
"js-sha256": "^0.9.0",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.5",
"qrcode.react": "^0.8.0",
"react": "^16.8.6",
"react-chrome-redux": "^2.0.0-alpha.4",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.8.6",
"react-i18next": "^10.6.2",
"react-number-format": "^4.0.7",
"react-redux": "^5.0.7",
"react-redux-loading-bar": "^4.1.0",
"react-responsive": "^6.0.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.1.1",
"react-spinkit": "^3.0.0",
"react-toastify": "^4.4.3",
"reactstrap": "^8.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"build": "npm run build-css && react-scripts build",
"build-chrome": "REACT_APP_BUILD_TARGET=chrome-extension npm run build && node build-scripts/build-chrome-extension.js",
"test": "npm run build-css && react-scripts test",
"eject": "react-scripts eject",
"lint": "tslint -p tsconfig.json && prettier 'src/**/*.{ts,tsx,scss,json,html,js,jsx}' -l",
"fmt": "tslint -p tsconfig.json --fix && prettier 'src/**/*.{ts,tsx,scss,json,html,js,jsx}' --write"
},
"devDependencies": {
"@types/chrome": "^0.0.75",
"@types/crypto-js": "^3.1.43",
"@types/file-saver": "^1.3.1",
"@types/jest": "^23.3.3",
"@types/lodash": "^4.14.117",
"@types/moment": "^2.13.0",
"@types/node": "^10.11.4",
"@types/qrcode.react": "^0.8.1",
"@types/react": "^16.8.13",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-dom": "^16.8.3",
"@types/react-i18next": "^8.1.0",
"@types/react-redux": "^6.0.9",
"@types/react-responsive": "^3.0.2",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^4.3.1",
"@types/react-spinkit": "^3.0.5",
"@types/reactstrap": "^7.1.3",
"@types/redux-logger": "^3.0.6",
"@types/redux-thunk": "^2.1.0",
"brfs": "^2.0.1",
"browserify": "^16.2.3",
"fs-extra": "^7.0.1",
"prettier": "^1.14.3",
"tinyify": "^2.5.0",
"tsify": "^4.0.1",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.4.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}