-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
184 lines (184 loc) · 5.67 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "unlabeledProject",
"version": "2.1.1",
"private": true,
"description": "Projet de soundboard afin de me familiariser avec certain package",
"url": "https://github.com/batleforc/SoundBoard",
"repository": {
"type": "git",
"url": "git+https://github.com/batleforc/SoundBoard.git"
},
"author": "Batleforc",
"license": "ISC",
"homepage": "./",
"main": "./build/electron.js",
"build": {
"productName": "unlabeledProject",
"appId": "com.example.unlabeledProject",
"icon": "build/toolbox.png",
"asar": true,
"files": [
"package.json",
"build/**/*",
"node_modules/**/*",
"BuildServer/**/*"
],
"win": {
"target": [
{
"target": "portable"
},
{
"target": "nsis"
},
{
"target": "zip"
}
]
},
"snap": {
"confinement": "classic"
},
"directories": {
"buildResources": "assets"
}
},
"bugs": {
"url": "https://github.com/batleforc/SoundBoard/issues"
},
"dependencies": {
"@craco/craco": "^6.1.0",
"@discordjs/opus": "^0.4.0",
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"@reduxjs/toolkit": "^1.5.0",
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"autoprefixer": "9",
"axios": "^0.21.1",
"bufferutil": "^4.0.3",
"chalk": "^4.1.0",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"discord.js": "^12.5.1",
"dotenv-flow": "^3.2.0",
"electron-is-dev": "^2.0.0",
"electron-log": "^4.3.2",
"ffmpeg-static": "^4.2.7",
"icomoon-react": "^2.0.19",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"nconf": "^0.11.2",
"node-abi": "^2.21.0",
"nodemon": "^2.0.7",
"open": "^8.0.5",
"opusscript": "^0.0.8",
"postcss": "7",
"react": "^17.0.1",
"react-burger-menu": "^3.0.6",
"react-dom": "^17.0.1",
"react-grid-layout": "^1.2.3",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"redux": "^4.0.5",
"socket.io": "^3.1.0",
"socket.io-client": "^3.1.2",
"sodium": "^3.0.2",
"sqlite": "^4.0.19",
"sqlite3": "^5.0.2",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"typescript": "^4.0.3",
"underscore": "^1.12.1",
"utf-8-validate": "^5.0.4",
"web-vitals": "^0.2.4",
"winston": "^3.3.3",
"winston-console-format": "^1.0.8",
"winston-daily-rotate-file": "^4.5.2",
"workbox-background-sync": "^5.1.3",
"workbox-broadcast-update": "^5.1.3",
"workbox-cacheable-response": "^5.1.3",
"workbox-core": "^5.1.3",
"workbox-expiration": "^5.1.3",
"workbox-google-analytics": "^5.1.3",
"workbox-navigation-preload": "^5.1.3",
"workbox-precaching": "^5.1.3",
"workbox-range-requests": "^5.1.3",
"workbox-routing": "^5.1.3",
"workbox-strategies": "^5.1.3",
"workbox-streams": "^5.1.3",
"ytdl-core": "^4.5.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development craco start",
"c:build": "cross-env NODE_ENV=production craco build",
"build": "yarn c:build && yarn S:ProdBuild",
"test": "craco test",
"eject": "craco eject",
"S:Build": "tsc -w --project ./serveur.tsconfig.json",
"S:ProdBuild": "cross-env NODE_ENV=production tsc --project ./serveur.tsconfig.json",
"S:Watch": "nodemon -q -w BuildServer BuildServer/index.js",
"S:DevWatch": "cross-env NODE_ENV=development concurrently --names \"S:Build,S:Watch\" -c \"grey.bold,blue.bold\" \"yarn:S:Build\" \"yarn:S:Watch\" --node-env=development",
"watch": "cross-env NODE_ENV=development concurrently --names \"S:Build,S:Watch,C:Watch\" -c \"grey.bold,blue.bold,white.bold\" \"yarn:S:Build\" \"yarn:S:Watch\" \"yarn:start\"",
"ebuild": "yarn run build && node_modules/.bin/build",
"electronDev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electronAlone": "electron .",
"allInDev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\" \"yarn S:DevWatch\"",
"preelectron-pack": "yarn c:build && yarn S:ProdBuild",
"postinstall": "electron-builder install-app-deps",
"electron-pack": "build --em.main=build/electron.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^26.0.22",
"@types/koa": "^2.11.7",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-cors": "^0.0.0",
"@types/koa-json": "^2.0.18",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.1",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.4",
"@types/nconf": "^0.10.0",
"@types/node": "^14.14.22",
"@types/react": "^16.9.53",
"@types/react-burger-menu": "^2.6.2",
"@types/react-dom": "^16.9.8",
"@types/react-grid-layout": "^1.1.1",
"@types/react-redux": "^7.1.16",
"@types/react-router-dom": "^5.1.7",
"@types/redux": "^3.6.0",
"@types/socket.io": "^2.1.13",
"@types/socket.io-client": "^1.4.35",
"@types/sqlite3": "^3.1.7",
"@types/underscore": "^1.10.24",
"electron": "11.4.0",
"electron-builder": "^22.10.5",
"wait-on": "^5.3.0"
}
}