-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.3 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.3 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "stackedsats-dashboard",
"version": "0.4.0",
"description": "App dashboard for stackedsats.",
"private": true,
"scripts": {
"tailwind:dev": "tailwindcss build src/assets/css/tailwind.css -o src/assets/css/tailwind.output.css",
"tailwind:build": "cross-env NODE_ENV=production postcss src/assets/css/tailwind.css -o src/assets/css/tailwind.output.css",
"prestart": "npm run tailwind:dev",
"start": "react-scripts start",
"prebuild": "npm run tailwind:build",
"build": "react-scripts build",
"cz": "git-cz",
"release": "release-it",
"test": "react-scripts test",
"eject": "react-scripts eject",
"devStacking": "parcel index.html"
},
"dependencies": {
"@ky-is/tailwindcss-plugin-width-height": "^1.0.0",
"@reactchartjs/react-chart.js": "^1.0.0-rc.3",
"@stacks/blockchain-api-client": "^0.47.2",
"@stacks/cli": "^1.1.1-alpha.0",
"@stacks/connect": "^4.3.16-alpha.135c3f4.0",
"@stacks/connect-react": "^2.17.15",
"@stacks/network": "^1.0.2",
"@stacks/profile": "^1.0.2",
"@stacks/stacking": "^1.1.0",
"@stacks/transactions": "^1.0.2",
"@statikly/funk": "^0.2.0",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.5.0",
"@testing-library/user-event": "7.2.1",
"@types/lodash-es": "^4.17.4",
"@windmill/react-ui": "0.3.1",
"axios": "^0.21.1",
"bitcoinjs-lib": "^5.2.0",
"bn.js": "^4.11.6",
"buffer": "^6.0.3",
"chart.js": "2.9.3",
"classnames": "2.2.6",
"faker": "4.1.0",
"joi": "^17.3.0",
"js-file-download": "^0.4.12",
"lodash-es": "^4.17.20",
"react": "^16.13.1",
"react-avatar": "^3.9.7",
"react-chartjs-2": "2.9.0",
"react-dom": "^16.13.1",
"react-focus-lock": "2.4.0",
"react-icons": "^4.1.0",
"react-redux": "^7.2.2",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.1",
"react-simple-maps": "^2.3.0",
"react-step-wizard": "^5.3.5",
"react-tippy": "^1.4.0",
"react-transition-group": "4.4.1",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"stxcalculator": "^1.0.3"
},
"devDependencies": {
"@release-it/conventional-changelog": "1.1.4",
"@svgr/webpack": "5.4.0",
"autoprefixer": "9.8.0",
"commitizen": "4.1.2",
"cross-env": "7.0.2",
"cssnano": "4.1.10",
"cz-conventional-changelog": "3.2.0",
"parcel-bundler": "^1.12.4",
"postcss-cli": "7.1.1",
"react-axe": "3.5.2",
"release-it": "13.6.4",
"tailwindcss": "1.4.6"
},
"keywords": [
"stackedsats",
"dashboard",
"admin",
"tailwind",
"react"
],
"release-it": {
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"volta": {
"node": "14.15.4",
"npm": "6.14.11"
}
}