-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 3.07 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
{
"name": "janusz-v2",
"description": "Boilerplate: Node, Webpack, Isomorphic React, Less, Babel, Handlebars",
"version": "1.0.0",
"main": "./server.js",
"author": "Fun Maker",
"scripts": {
"prestart": "npm run lint || true",
"start": "rm -rf build && webpack --config webpack/server.dev.babel.js",
"start:prod": "cd dist && npm start",
"build:prod": "mkdir -p dist && npm-run-all build:prod-*",
"build:prod-server": "webpack --config webpack/server.babel.js",
"build:prod-client": "webpack --config webpack/client.babel.js",
"build:prod-static": "cp -r web/static dist/ && cp -r sounds/sounds dist/",
"build:prod-package": "babel-node webpack/package.babel.js",
"lint": "eslint --ext .js --ext .jsx --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js --ext .jsx --ignore-path .gitignore . --fix"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@webscopeio/react-textarea-autocomplete": "^4.7.3",
"ansi-to-html": "^0.7.1",
"axios": "^1.7.4",
"babel-eslint": "^10.1.0",
"bezier-easing": "^2.1.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"chokidar": "^3.5.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.7",
"detect-node": "^2.1.0",
"discord.js": "^12.5.3",
"express": "^4.21.1",
"express-promise-router": "^4.1.0",
"express-ws": "^5.0.2",
"fluent-ffmpeg": "^2.1.2",
"franc-min": "^6.1.0",
"fs-extra": "^10.0.0",
"http-status-codes": "^2.1.4",
"intercept-stdout": "^0.1.2",
"iso-639-3": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"mobile-device-detect": "^0.4.3",
"morgan": "^1.10.0",
"mumble": "github:funmaker/node12-mumble",
"ndfft": "0.0.0",
"node-opus": "^0.3.3",
"prop-types": "^15.7.2",
"query-string": "^7.0.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"react-hot-loader": "^4.13.0",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.1",
"react-split-pane": "^0.1.92",
"semantic-ui-react": "^2.0.3",
"source-map-support": "^0.5.19",
"strip-ansi": "^6.0.0",
"uuid": "^8.3.2",
"web-audio-engine": "^0.13.4",
"youtube-dl": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/register": "^7.15.3",
"@hot-loader/react-dom": "16.14.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-indent-empty-lines": "^1.0.1",
"eslint-plugin-react": "^7.25.0",
"handlebars": "^4.7.7",
"handlebars-loader": "^1.7.3",
"mini-css-extract-plugin": "^2.2.0",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"sass-loader": "^12.1.0",
"start-server-nestjs-webpack-plugin": "^2.2.5",
"start-server-webpack-plugin": "^2.2.5",
"style-loader": "^3.2.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.8.0",
"webpack-dev-middleware": "^5.3.4",
"webpack-hot-middleware": "^2.25.3",
"webpack-node-externals": "^3.0.0"
}
}