-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
93 lines (93 loc) · 2.66 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
{
"name": "wax-dummy-market",
"version": "2.2.5",
"proxy": "http://127.0.0.1:5000/",
"sideEffects": false,
"private": true,
"main": "index.js",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js",
"test": "jest",
"prepare": "husky install",
"lint": "eslint src/**/*.js"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"node": {
"fs": "empty"
},
"dependencies": {
"@eosdacio/ual-wax": "^1.5.1",
"@headlessui/react": "^1.4.2",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"ual-reactjs-renderer": "^0.3.1",
"long": "^5.2.0",
"next": "^12.0.8",
"react": "17.0.2",
"react-bootstrap": "^2.1.0",
"react-content-loader": "^6.1.0",
"react-dom": "^17.0.2",
"react-dropdown": "^1.9.2",
"react-query": "^3.34.7",
"react-share": "^4.4.0",
"ual-anchor": "^1.1.4",
"zustand": "^3.6.9"
},
"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"
]
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.2.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/date-fns": "^2.6.0",
"@types/next": "^9.0.0",
"@types/qs": "^6.9.7",
"autoprefixer": "^10.3.2",
"babel-eslint": "10.1.0",
"babel-jest": "^27.4.6",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-flowtype": "5.9.0",
"eslint-plugin-import": "2.24.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"express": "4.17.1",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"postcss": "^8.3.6",
"prettier-plugin-organize-imports": "^2.3.4",
"sass": "1.38.0",
"tailwindcss": "^2.2.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"webpack-bundle-analyzer": "^4.5.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}