forked from stove-labs/portfolio-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.41 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
106
107
108
109
110
{
"name": "portfolio-manager",
"private": true,
"version": "0.0.0",
"type": "commonjs",
"scripts": {
"dev": "parcel serve index.html",
"build": "parcel build index.html",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install",
"predev": "rm -rf .parcel-cache"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"npm run build"
]
},
"dependencies": {
"@airgap/beacon-sdk": "^3.2.0",
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.2",
"@choc-ui/chakra-autocomplete": "^5.1.2",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@parcel/config-default": "^2.7.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@types/chart.js": "^2.9.37",
"@types/moment": "^2.13.0",
"bignumber.js": "^9.1.0",
"chakra-ui-steps": "^1.7.4",
"chart.js": "^3.9.1",
"chartjs-plugin-annotation": "^2.0.1",
"classnames": "^2.3.2",
"constate": "^3.3.2",
"formik": "^2.2.9",
"framer-motion": "^7.3.5",
"immer": "^9.0.15",
"js-abbreviation-number": "^1.4.0",
"lodash": "^4.17.21",
"loglevel": "^1.8.0",
"moment": "^2.29.4",
"number-abbreviate": "^2.0.0",
"parcel": "^2.7.0",
"react": "^18.2.0",
"react-chartjs-2": "^4.3.1",
"react-combine-reducers": "^1.1.1",
"react-dom": "^18.2.0",
"react-grid-layout": "^1.3.4",
"react-hook-form": "^7.37.0",
"react-middle-ellipsis": "^1.2.1",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.0",
"redux-dynamic-middlewares": "^2.2.0",
"redux-thunk": "^2.4.1",
"to-space-case": "^1.0.0",
"use-reducer-logger": "^1.0.2",
"uuid": "^9.0.0"
},
"peerDependencies": {
"@chakra-ui/icons": "^2.0.9",
"@chakra-ui/react": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@chakra-ui/storybook-addon": "^4.0.11",
"@faker-js/faker": "^7.6.0",
"@parcel/transformer-typescript-tsc": "^2.7.0",
"@storybook/addon-actions": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-links": "^6.5.12",
"@storybook/builder-webpack4": "^6.5.12",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@swc/core": "^1.3.2",
"@types/node": "^18.7.16",
"@types/react": "^18.0.20",
"@types/react-combine-reducers": "^1.0.0",
"@types/react-dom": "^18.0.6",
"@types/react-grid-layout": "^1.3.2",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"babel-loader": "^8.2.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-storybook": "^0.6.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-swc": "^0.2.1",
"stream": "^0.0.2",
"typescript": "^4.8.3",
"webpack": "^5.74.0"
}
}