forked from spectrum-finance/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.65 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
111
112
113
114
115
116
117
118
{
"name": "ergodex-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "HTTPS=true react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"lint:stylelint": "stylelint src/**/*.module.scss",
"lint:prettier": "prettier --check src",
"lint:prettier:fix": "yarn lint:prettier --write",
"lint:eslint": "eslint --ext .js,.ts,.tsx src",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:stylelint",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@alfalab/core-components-amount-input": "^5.2.3",
"@alfalab/core-components-select": "^9.3.2",
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@geist-ui/react": "^2.1.5",
"@rehooks/local-storage": "2.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/fast-levenshtein": "^0.0.2",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^12.0.0",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"bignumber.js": "^9.0.1",
"ergo-dex-sdk": "^0.3.16",
"ergo-lib-wasm-browser": "^0.13.1",
"eslint-plugin-react-hooks": "^4.2.0",
"fast-levenshtein": "^3.0.0",
"final-form": "^4.20.2",
"js-cookie": "^3.0.0",
"lodash": "^4.17.21",
"mathjs": "^9.4.4",
"ramda": "^0.27.1",
"rc-select": "^12.1.13",
"react": "^17.0.2",
"react-app-rewired": "^2.1.8",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.2",
"react-final-form": "^6.5.3",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^7.0.4",
"typescript": "^4.3.5",
"web-vitals": "^1.0.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/plugin-syntax-optional-chaining": "^7.8.3",
"@storybook/addon-actions": "^6.3.7",
"@storybook/addon-docs": "^6.3.7",
"@storybook/addon-links": "^6.3.7",
"@storybook/node-logger": "^6.3.7",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.7",
"@types/bs58": "^4.0.1",
"@types/js-cookie": "^2.2.7",
"@types/ramda": "^0.27.44",
"@types/react-copy-to-clipboard": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-loader": "8.1.0",
"css-modules-typescript-loader": "^4.0.1",
"customize-cra": "^1.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-app": "^6.2.2",
"node-sass": "^4.14.1",
"prettier": "^2.3.2",
"react-app-rewire-typings-for-css-module": "^4.0.3",
"sass-loader": "^12.1.0",
"stylelint": "^13.13.1",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-scss": "^3.20.1",
"wasm-loader": "^1.3.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "^14"
},
"eslintConfig": {
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
}
}