-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.95 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.95 KB
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
{
"name": "codechain-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"@types/react-widgets": "^4.3.3",
"@types/reactstrap": "^6.0.3",
"animate.css": "^3.7.0",
"axios": "^0.21.2",
"bootstrap": "^4.1.3",
"chart.js": "^2.7.2",
"codechain-sdk": "^0.4.0-rc3",
"deepmerge": "^2.1.1",
"lodash": "^4.17.19",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.5",
"plotly.js": "^1.47.4",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.4",
"react-color": "^2.14.1",
"react-confirm-alert": "^2.0.5",
"react-copy-to-clipboard": "^5.0.1",
"react-datepicker": "^1.8.0",
"react-dom": "^16.5.0",
"react-modal": "^3.5.1",
"react-plotly.js": "^2.3.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-scripts": "^3.0.1",
"react-toastify": "^4.3.2",
"react-vis-force": "^0.3.1",
"react-widgets": "^4.4.10",
"reactstrap": "^6.4.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "2.2.0",
"rpc-websockets": "^4.3.2",
"uuid": "^3.3.2"
},
"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 --max_old_space_size=4096 start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-scripts --max_old_space_size=4096 build",
"build": "npm-run-all build-css build-js",
"test": "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/chart.js": "^2.7.34",
"@types/jest": "^23.3.2",
"@types/lodash": "^4.14.116",
"@types/node": "^10.9.4",
"@types/react": "^16.4.14",
"@types/react-color": "^2.13.6",
"@types/react-copy-to-clipboard": "^4.2.6",
"@types/react-datepicker": "^1.1.7",
"@types/react-dom": "^16.0.7",
"@types/react-modal": "^3.8.2",
"@types/react-plotly.js": "^2.2.2",
"@types/react-redux": "^6.0.7",
"@types/react-router-dom": "^4.3.0",
"@types/redux-logger": "^3.0.6",
"jest-canvas-mock": "^2.1.0",
"prettier": "^1.14.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^3.4.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}