-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.3 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
{
"name": "lycaria-client",
"productName": "Lycaria",
"version": "1.0.0",
"description": "Cliente interativo do jogo online Lycaria.",
"license": "MIT",
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"browserslist": [
"last 4 versions"
],
"main": "main.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "cross-env NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"package": "npm run build",
"postpackage": "electron-packager ./ --out=./release-builds --asar"
},
"dependencies": {
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/styles": "^4.11.3",
"@sweetalert2/theme-dark": "^4.0.3",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"bootstrap": "^4.6.0",
"chokidar": "^3.5.2",
"cli-progress": "^3.9.0",
"colyseus.js": "^0.14.4",
"decompress": "^4.2.1",
"decompress-zip": "^0.3.3",
"download-file-with-progressbar": "^1.2.3",
"electron-prompt": "^1.6.1",
"framer-motion": "^3.3.0",
"gsap": "^3.6.0",
"howler": "^2.2.1",
"immutability-helper": "^3.1.1",
"install": "^0.13.0",
"jquery": "^3.5.1",
"node-downloader-helper": "^1.0.18",
"nodejs-file-downloader": "^4.7.0",
"npm": "^7.5.4",
"react": "^17.0.1",
"react-addons-css-transition-group": "^15.6.2",
"react-bootstrap": "^1.5.0",
"react-client-captcha": "^1.0.3",
"react-cookie": "^4.0.3",
"react-dom": "^17.0.1",
"react-particles-js": "^3.4.1",
"react-scrollbars-custom": "^4.0.25",
"react-swipeable-views": "^0.13.9",
"react-transition-group": "^1.2.1",
"react-tsparticles": "^1.19.2",
"react-ui-icheck": "^0.7.0",
"request": "^2.88.2",
"sfcookies": "^1.0.2",
"sweetalert2": "^10.15.5",
"sweetalert2-react-content": "^3.3.0",
"uifx": "^2.0.7",
"unrar-promise": "^2.0.1",
"validate.js": "^0.13.1",
"ws": "^7.4.4"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.17",
"@babel/preset-env": "^7.12.17",
"@babel/preset-react": "^7.12.13",
"@babel/runtime": "^7.12.18",
"babel-loader": "^8.2.2",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"electron": "^11.2.3",
"electron-devtools-installer": "^3.1.1",
"electron-packager": "^15.2.0",
"electron-react-devtools": "^0.5.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"mini-css-extract-plugin": "^0.9.0",
"react-devtools-electron": "^4.7.0",
"style-loader": "^1.3.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2"
}
}