-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·119 lines (119 loc) · 4.49 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
119
{
"name": "orderbook-for-cryptocurrencies",
"version": "0.0.1",
"description": "Orderbook for cryptocurrencies",
"license": "MIT",
"author": "Carlo Patti <[email protected]>",
"main": "webpack.config.babel.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.babel.js",
"profile": "cross-env NODE_ENV=production webpack --profile --json --config webpack.config.babel.js > ./dist/profile.json && webpack-bundle-analyzer ./dist/profile.json",
"start": "cross-env WEBPACK_IS_DEV_SERVER=true NODE_ENV=development webpack serve --config webpack.config.babel.js",
"release": "npm version patch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
}
},
"dependencies": {
"@types/classnames": "^2.2.10",
"@types/lodash": "^4.14.170",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/resize-observer-browser": "^0.1.5",
"@types/sharedworker": "0.0.29",
"@types/websocket": "^1.0.3",
"classnames": "^2.3.1",
"comlink": "^4.3.1",
"lodash": "^4.17.21",
"nanoid": "^3.1.23",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/core": "~7.12.3",
"@babel/plugin-proposal-class-properties": "~7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-export-namespace-from": "~7.12.1",
"@babel/plugin-proposal-object-rest-spread": "~7.12.1",
"@babel/plugin-proposal-throw-expressions": "~7.12.1",
"@babel/plugin-syntax-dynamic-import": "~7.8.3",
"@babel/plugin-transform-runtime": "~7.12.1",
"@babel/preset-env": "~7.12.1",
"@babel/preset-react": "~7.12.1",
"@babel/register": "~7.12.1",
"@pmmmwh/react-refresh-webpack-plugin": "~0.4.2",
"@svgr/webpack": "~5.4.0",
"@teamsupercell/typings-for-css-modules-loader": "~2.4.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@typescript-eslint/eslint-plugin": "~4.7.0",
"@typescript-eslint/parser": "~4.7.0",
"autoprefixer": "~10.0.1",
"babel-eslint": "~10.1.0",
"babel-loader": "~8.2.1",
"clean-webpack-plugin": "~3.0.0",
"copy-webpack-plugin": "~6.3.0",
"core-js": "~3.7.0",
"cross-env": "^7.0.3",
"css-loader": "~5.0.0",
"cssnano": "~4.1.10",
"eslint": "~7.13.0",
"eslint-config-airbnb-base": "~14.2.0",
"eslint-config-airbnb-typescript": "~12.0.0",
"eslint-config-prettier": "~6.15.0",
"eslint-import-resolver-alias": "~1.1.2",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsx-a11y": "~6.4.1",
"eslint-plugin-react": "~7.21.5",
"eslint-plugin-react-hooks": "~4.2.0",
"eslint-webpack-plugin": "~2.2.1",
"fork-ts-checker-webpack-plugin": "~6.0.1",
"html-loader": "~1.3.2",
"html-webpack-plugin": "~5.0.0-alpha.6",
"husky": "~4.3.0",
"import-sort-style-module-and-prefix": "~0.1.3",
"is-windows": "~1.0.2",
"jest": "^27.0.6",
"less": "~3.12.2",
"less-loader": "~7.0.2",
"lint-staged": "~10.5.0",
"mini-css-extract-plugin": "~1.3.0",
"path": "~0.12.7",
"postcss": "~8.2.5",
"postcss-loader": "~4.0.4",
"prettier": "~2.1.2",
"prettier-plugin-import-sort": "~0.0.6",
"pretty-quick": "~3.1.0",
"react-refresh": "~0.9.0",
"regenerator-runtime": "~0.13.7",
"resolve-url-loader": "~3.1.2",
"sass": "~1.29.0",
"sass-loader": "~10.0.4",
"sass-resources-loader": "~2.1.1",
"style-loader": "~2.0.0",
"svg-url-loader": "~6.0.0",
"terser-webpack-plugin": "~5.0.1",
"ts-loader": "~8.0.7",
"typescript": "~4.0.3",
"url-loader": "~4.1.1",
"webpack": "~5.24.2",
"webpack-bundle-analyzer": "~4.1.0",
"webpack-cli": "~4.5.0",
"webpack-dev-server": "~3.11.2",
"webpack-merge": "~5.3.0"
},
"importSort": {
".ts, .tsx": {
"style": "module-and-prefix",
"parser": "typescript"
},
".js, .jsx": {
"style": "module-and-prefix",
"parser": "babylon"
}
}
}