forked from areebbeigh/codeinterview-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.06 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": "codeinterview-frontend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config build-utils/webpack.config.js --env.env=dev",
"build": "webpack --config build-utils/webpack.config.js --env.env=prod",
"watch": "webpack --config build-utils/webpack.config.js --watch --env.env=dev",
"build:analyze": "npm run build -- --env.addon=bundleanalyze --env.addon=bundlevisualizer",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [],
"author": "Areeb Beigh <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"dotenv-webpack": "^1.7.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"postcss-import": "^12.0.1",
"postcss-import-url": "^5.1.0",
"postcss-load-config": "^2.1.0",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-simple-vars": "^5.0.2",
"prettier": "^1.18.2",
"react-hot-loader": "^4.12.15",
"style-loader": "^1.1.3",
"sugarss": "^2.0.0",
"ttf-loader": "^1.0.2",
"url-loader": "^4.0.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2",
"webpack-visualizer-plugin": "^0.1.11"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@reduxjs/toolkit": "^1.3.2",
"axios": "^0.19.2",
"bootstrap": "^4.4.1",
"chalk": "^4.0.0",
"moment": "^2.24.0",
"monaco-editor-webpack-plugin": "^1.9.0",
"overlayscrollbars": "^1.12.0",
"overlayscrollbars-react": "^0.2.2",
"postcss-define-function": "^0.1.2",
"postcss-modules-values": "^3.0.0",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-bootstrap": "^1.0.0",
"react-bootstrap-dialog": "^0.13.0",
"react-device-detect": "^1.12.1",
"react-dom": "^16.10.2",
"react-monaco-editor": "^0.35.0",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"react-toastify": "^6.0.5",
"reconnecting-websocket": "^4.4.0",
"regenerator-runtime": "^0.13.5",
"uuid": "^7.0.3",
"xterm": "^4.5.0",
"xterm-addon-fit": "^0.3.0",
"y-monaco": "0.0.1",
"y-webrtc": "^10.1.3",
"yjs": "^13.0.5"
}
}