-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.77 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
{
"name": "beam-dapp-react",
"version": "0.1.0",
"main": "index.js",
"repository": "",
"author": "",
"license": "",
"scripts": {
"commit-hook": "git add .",
"lint": "eslint './src/**/*.ts{,x}' --fix",
"prettier": "prettier --write \"**/*.+(ts|tsx)\"",
"build": "webpack --config webpack.common.js",
"start": "webpack serve --config webpack.common.js",
"prod": "webpack serve --config webpack.prod.js"
},
"pre-commit": [
"prettier",
"lint",
"commit-hook"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/preset-env": "7.12.11",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@linaria/babel-preset": "^3.0.0-beta.4",
"@linaria/shaker": "^3.0.0-beta.7",
"@linaria/webpack-loader": "^3.0.0-beta.7",
"@svgr/webpack": "^6.1.2",
"@types/chrome": "0.0.135",
"@types/node": "^16.6.1",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "4.17.0",
"@typescript-eslint/parser": "4.17.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^14.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^8.0.0",
"prettier": "2.1.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"svgo-loader": "^3.0.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "4.4.3",
"web-ext-types": "3.2.1",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.7.0"
},
"dependencies": {
"@linaria/core": "^3.0.0-beta.4",
"@linaria/react": "^3.0.0-beta.7",
"babel-polyfill": "^6.26.0",
"ethereum-address": "^0.0.4",
"formik": "^2.2.9",
"immer": "^9.0.6",
"js-base64": "^3.7.2",
"react": "^17.0.1",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.1",
"react-highlight-words": "^0.18.0",
"react-markdown": "^8.0.3",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"react-select": "^5.7.0",
"react-tiny-popover": "^7.0.1",
"react-toastify": "^8.2.0",
"redux": "^4.1.2",
"redux-saga": "^1.1.3",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"reselect": "^4.1.3",
"typesafe-actions": "^5.1.0",
"util": "^0.12.4"
}
}