forked from RyanEwen/lan-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.22 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
{
"name": "lan-tools",
"version": "1.0.0",
"main": "dist/server/Server.bundle.js",
"scripts": {
"build-dev": "webpack --config webpack.config.js --mode development --watch",
"build-prod": "webpack --config webpack.config.js --mode production"
},
"nodemonConfig": {
"watch": "dist/server"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/pickers": "^3.2.10",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.25.2",
"file-loader": "^4.3.0",
"html-webpack-partials-plugin": "^0.5.6",
"html-webpack-plugin": "^4.3.0",
"notistack": "^1.0.10",
"postcss-loader": "^3.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-nl2br": "^0.5.1",
"react-router-dom": "^5.3.0",
"react-virtuoso": "^0.15.0",
"socket.io-client": "^4.2.0",
"string-to-color": "^2.2.2",
"style-loader": "^1.2.1",
"url-loader": "^2.3.0",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-session-sequelize": "^7.1.2",
"crypto-random-string": "^3.2.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"express-socket.io-session": "^1.3.5",
"glob": "^7.1.7",
"lodash": "^4.17.15",
"maskdata": "^1.1.6",
"moment": "^2.29.1",
"mysql2": "^2.3.0",
"natural-orderby": "^2.0.3",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-discord": "^0.1.4",
"passport-oauth2-refresh": "^2.1.0",
"react-social-login-buttons": "^3.5.1",
"sequelize": "^6.6.5",
"socket.io": "^4.2.0",
"typeface-roboto": "0.0.75"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": "last 2 years, not dead"
}
],
[
"@babel/react"
]
],
"plugins": [
[
"@babel/plugin-proposal-optional-chaining"
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-proposal-private-property-in-object",
{
"loose": true
}
],
[
"@babel/plugin-proposal-private-methods",
{
"loose": true
}
]
]
}
}