forked from deriv-com/deriv-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
161 lines (161 loc) · 6.17 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@deriv/core",
"version": "0.1.0",
"description": "Deriv Core",
"main": "index.js",
"private": true,
"scripts": {
"analyze:stats": "f () { webpack --progress --config \"./build/webpack.config.js\" --env base=$1 --env IS_CRYPTO_APP=${IS_CRYPTO_APP:-false} --profile --json=stats.json;}; f",
"analyze:build": "webpack-bundle-analyzer --no-open -m static -r treemap.html stats.json ./dist && webpack-bundle-analyzer -m json stats.json ./dist",
"start": "npm run test && npm run serve",
"serve": "f() { echo \"Serving...\" && ./node_modules/.bin/webpack serve --config \"./build/webpack.config.js\" --env open $1;}; f",
"build": "f () { webpack --config \"./build/webpack.config.js\" --env base=$1 --env IS_CRYPTO_APP=${IS_CRYPTO_APP:-false};}; f",
"build:travis": "echo \"No build:travis specified\"",
"test:eslint": "eslint \"./src/**/*.?(js|jsx|ts|tsx)\"",
"deploy": "npm run build && gh-pages -d dist --remove=\"js\"",
"deploy:clean": "npm run build && gh-pages -d dist",
"deploy:folder": "f () { npm run build -- $1 && gh-pages -d dist -e $1 ;}; f"
},
"repository": {
"type": "git",
"url": "https://github.com/binary-com/deriv-app.git"
},
"keywords": [
"deriv"
],
"author": "Deriv",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/binary-com/deriv-app/issues"
},
"engines": {
"node": "18.x"
},
"homepage": "https://github.com/binary-com/deriv-app",
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-private-property-in-object": "^7.12.1",
"@babel/plugin-proposal-unicode-property-regex": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^12.0.0",
"@testing-library/react-hooks": "^7.0.2",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^18.0.7",
"@types/react-dom": "^18.0.0",
"babel-loader": "^8.1.0",
"circular-dependency-plugin": "^5.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^3.0.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-binary": "^1.0.2",
"eslint-config-prettier": "^7.2.0",
"eslint-formatter-pretty": "^4.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"history": "^5.0.0",
"gh-pages": "^6.1.1",
"git-revision-webpack-plugin": "^5.0.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^5.0.0-beta.5",
"html-webpack-tags-plugin": "^2.0.17",
"ignore-styles": "^5.0.1",
"jsdom": "^21.1.1",
"jsdom-global": "^2.1.1",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^1.3.4",
"mock-local-storage": "^1.1.8",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"postcss-scss": "^4.0.6",
"preload-webpack-plugin": "^3.0.0-beta.4",
"react-svg-loader": "^3.0.3",
"resolve-url-loader": "^3.1.2",
"sass": "^1.62.1",
"sass-loader": "^12.6.0",
"sass-resources-loader": "^2.1.1",
"stylelint-formatter-pretty": "^2.1.1",
"stylelint-webpack-plugin": "^2.1.1",
"svgo": "^2.8.0",
"terser-webpack-plugin": "^5.1.1",
"typescript": "^4.6.3",
"webpack": "^5.81.0",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^4.7.2",
"webpack-dev-middleware": "^5.0.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "^4.0.2",
"webpack-node-externals": "^2.5.2",
"workbox-webpack-plugin": "^6.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@datadog/browser-rum": "^5.11.0",
"@deriv-com/analytics": "1.14.0",
"@deriv-com/quill-tokens": "^2.0.4",
"@deriv-com/quill-ui": "1.16.18",
"@deriv-com/translations": "1.3.9",
"@deriv-com/ui": "1.35.0",
"@deriv-com/utils": "^0.0.34",
"@deriv/account": "^1.0.0",
"@deriv/api": "^1.0.0",
"@deriv/appstore": "^0.0.4",
"@deriv/bot-web-ui": "^1.0.0",
"@deriv/cashier": "^1.0.0",
"@deriv/cfd": "^1.0.0",
"@deriv/components": "^1.0.0",
"@deriv/deriv-api": "^1.0.15",
"@deriv/deriv-charts": "^2.5.1",
"@deriv/hooks": "^1.0.0",
"@deriv/p2p": "^0.7.3",
"@deriv/quill-design": "^1.3.2",
"@deriv/quill-icons": "2.1.0",
"@deriv/reports": "^1.0.0",
"@deriv/shared": "^1.0.0",
"@deriv/stores": "^1.0.0",
"@deriv/trader": "^3.8.0",
"@deriv/translations": "^1.0.0",
"@deriv/utils": "^1.0.0",
"@deriv/wallets": "^1.0.0",
"@livechat/customer-sdk": "^2.0.4",
"acorn": "^6.1.1",
"babel-polyfill": "^6.26.0",
"canvas-toBlob": "^1.0.0",
"classnames": "^2.2.6",
"crc-32": "^1.2.0",
"dotenv-webpack": "^8.0.1",
"extend": "^3.0.2",
"formik": "^2.1.4",
"framer-motion": "^6.5.1",
"i18next": "^22.4.6",
"js-cookie": "^2.2.1",
"loadjs": "^4.2.0",
"lodash.debounce": "^4.0.8",
"lodash.throttle": "^4.1.1",
"mobx": "^6.6.1",
"mobx-react": "^7.5.1",
"mobx-utils": "^6.0.5",
"moment": "^2.29.2",
"null-loader": "^4.0.1",
"object.fromentries": "^2.0.0",
"postcss-rtlcss": "^4.0.9",
"promise-polyfill": "^8.1.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-content-loader": "^6.2.0",
"react-dom": "^17.0.2",
"react-i18next": "^11.11.0",
"react-loadable": "^5.5.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-tiny-popover": "^7.0.1",
"react-transition-group": "4.4.2",
"react-window": "^1.8.5",
"usehooks-ts": "^2.7.0"
}
}