-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.5 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
{
"name": "slack-clone-client",
"version": "1.0.0",
"description": "Slack clone (Client App) with React, Redux, Redux-Saga",
"main": " ",
"scripts": {
"compile": "rollup --config rollup.config.js --environment NODE_ENV:development",
"compile:prod": "rollup --config rollup.config.js --environment NODE_ENV:production",
"serve": "http-server-spa ./dist/web ./index.html 1234"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bkorobeinikov/slack-clone-client.git"
},
"keywords": [
"slack",
"react",
"redux",
"redux-saga"
],
"author": "Borys Korobeinikov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bkorobeinikov/slack-clone-client/issues"
},
"homepage": "https://github.com/bkorobeinikov/slack-clone-client#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "17.1.0",
"@rollup/plugin-eslint": "8.0.1",
"@rollup/plugin-html": "0.2.2",
"@rollup/plugin-node-resolve": "11.1.1",
"@rollup/plugin-typescript": "8.1.1",
"@types/core-js": "2.5.4",
"@types/react-router-dom": "5.1.7",
"@typescript-eslint/eslint-plugin": "4.14.1",
"@typescript-eslint/parser": "4.14.1",
"autoprefixer": "10.2.4",
"eslint": "7.18.0",
"eslint-config-prettier": "7.2.0",
"history": "5.0.0",
"http-server-spa": "1.3.0",
"postcss": "8.2.4",
"prettier": "2.2.1",
"rollup": "2.38.1",
"rollup-plugin-clear": "2.0.7",
"rollup-plugin-postcss": "4.0.0",
"rollup-plugin-replace": "2.2.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-visualizer": "4.2.0",
"sass": "1.32.5",
"tailwindcss": "2.0.2",
"typescript": "4.1.3"
},
"dependencies": {
"@tailwindcss/forms": "0.2.1",
"@types/lodash": "4.14.168",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"@types/react-redux": "7.1.16",
"@types/redux": "3.6.31",
"@types/redux-saga": "0.10.5",
"@types/reselect": "2.2.0",
"connected-react-router": "6.8.0",
"core-js": "3.8.3",
"lodash": "4.17.20",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-redux": "7.2.2",
"react-router-dom": "5.2.0",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"reselect": "4.0.0",
"tslib": "2.1.0"
}
}