forked from Synthetixio/synthetix-exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.27 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": "synthetix.exchange",
"version": "2.45.3",
"private": true,
"dependencies": {
"@bugsnag/js": "6.2.0",
"@bugsnag/plugin-react": "6.2.0",
"@material-ui/core": "^4.9.0",
"@reduxjs/toolkit": "1.3.2",
"@synthetixio/assets": "2.0.5",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.3.2",
"@testing-library/user-event": "7.1.2",
"@types/jest": "24.0.0",
"bignumber.js": "9.0.0",
"bnc-notify": "^1.4.0",
"date-fns": "2.14.0",
"ethers": "4.0.46",
"history": "4.10.1",
"i18next": "19.3.4",
"i18next-browser-languagedetector": "4.0.2",
"lodash": "4.17.19",
"memoize-one": "^5.1.1",
"numbro": "^2.1.2",
"prettier": "^2.0.4",
"rc-slider": "^8.7.1",
"react": "16.13.1",
"react-datepicker": "3.0.0",
"react-dom": "16.13.1",
"react-i18next": "11.3.4",
"react-outside-click-handler": "1.3.0",
"react-query": "2.4.4",
"react-redux": "7.2.0",
"react-responsive": "8.0.3",
"react-router-dom": "5.1.2",
"react-scripts": "3.4.1",
"react-select": "^3.0.8",
"react-table": "7.0.4",
"recharts": "^2.0.0-beta.1",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"redux-thunk": "~2.3.0",
"styled-components": "5.0.1",
"styled-system": "5.1.2",
"synthetix-data": "2.1.37",
"synthetix-js": "2.45.3",
"typescript": "3.7.2",
"use-immer": "0.4.0"
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-backgrounds": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@types/date-fns": "^2.6.0",
"@types/history": "^4.7.5",
"@types/lodash": "^4.14.149",
"@types/node": "12.0.0",
"@types/numbro": "^1.9.3",
"@types/react": "16.9.0",
"@types/react-datepicker": "^2.11.1",
"@types/react-dom": "16.9.0",
"@types/react-outside-click-handler": "^1.3.0",
"@types/react-redux": "^7.1.7",
"@types/react-responsive": "^8.0.2",
"@types/react-router-dom": "^5.1.3",
"@types/react-select": "^3.0.13",
"@types/react-table": "^7.0.16",
"@types/styled-components": "^5.0.1",
"@types/styled-system": "^5.1.9",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-prettier": "^3.1.3",
"storybook-addon-styled-component-theme": "^1.3.0",
"stylelint": "^13.3.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0"
},
"scripts": {
"start": "REACT_APP_VERSION=$npm_package_version react-scripts --max-old-space-size=4096 start",
"build": "REACT_APP_VERSION=$npm_package_version react-scripts --max-old-space-size=4096 build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"tsc": "tsc --noemit",
"lint:fix": "eslint --fix './src/**/*.{js,ts,tsx}'",
"lint:css": "stylelint './src/**/*.{js,ts,tsx}'",
"lint": "eslint './src/**/*.{js,ts,tsx}' && tsc",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"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"
]
}
}