-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.33 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
{
"name": "webchat-fullstack-showcase",
"version": "0.0.1",
"description": "Webchat full-stack showcase with Typescript, React, Redux, Socket.io, Node.js, Webpack.",
"appName": "Webchat Showcase",
"license": "MIT",
"scripts": {
"clean": "rimraf ./dist && mkdir dist",
"start": "run-p dev ts-script-dev",
"dev": "yarn clean && webpack-dev-server --open",
"ts-script": "ts-node --project src/server/tsconfig.json server/index.ts",
"ts-script-dev": "ts-node-dev --project src/server/tsconfig.json --inspect -- src/server/index.ts",
"prebuild": "yarn clean",
"build": "cross-env NODE_ENV=production webpack",
"serv-prod": "cross-env NODE_ENV=production run-p build ts-script",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"test": "echo 'Aaaaargh, I didn\\'t manage to add tests for lack of time!!!'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xdemocle/docler-webchat-fullstack.git"
},
"author": {
"name": "Rocco Russo",
"email": "[email protected]",
"url": "https://github.com/xdemocle"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@babel/core": "^7.10.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.1",
"@babel/preset-env": "^7.10.0",
"@babel/preset-react": "^7.10.0",
"@babel/preset-typescript": "^7.9.0",
"@hot-loader/react-dom": "^16.13.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"babel-loader": "^8.1.0",
"bitbar-webpack-progress-plugin": "^1.0.0",
"clean-webpack-plugin": "^3.0.0",
"clsx": "^1.1.1",
"copy-webpack-plugin": "^6.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"fork-ts-checker-webpack-plugin": "^4.1.6",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"mini-css-extract-plugin": "^0.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"react-hot-loader": "^4.12.21",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "3.7.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpackbar": "^4.0.0"
},
"dependencies": {
"@material-ui/core": "^4.10.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/styles": "^4.10.0",
"@types/express": "^4.17.6",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/redux": "^3.6.0",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"express": "^4.17.1",
"http": "^0.0.1-security",
"path": "^0.12.7",
"random": "^2.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"react-scroll": "^1.7.16",
"react-translate": "^7.0.1",
"redux": "^4.0.5",
"redux-localstorage": "^0.4.1",
"redux-socket.io-middleware": "^1.0.4",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"uuid": "^8.1.0"
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"yarn lint"
]
}
}