This repository has been archived by the owner on Jul 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "salve",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon",
"build": "next build && tsc --project tsconfig.server.json",
"build:check": "tsc --noEmit && tsc --project tsconfig.server.json --noEmit",
"pruneDeps": "node scripts/yarn-prune.js",
"start": "NODE_ENV=production node dist/index.js",
"lint": "next lint",
"postinstall": "prisma generate",
"setup": "prisma generate && prisma db push",
"listLicenses": "yarn license-checker-rseidelsohn --out docs/licenses.txt --limitAttributes licenses --excludePrivatePackages"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@ericblade/quagga2": "^1.7.0",
"@mui/icons-material": "^5.8.0",
"@mui/lab": "^5.0.0-alpha.82",
"@mui/material": "^5.8.0",
"@mui/system": "^5.8.0",
"@mui/x-data-grid": "^5.11.1",
"@prisma/client": "^3.14.0",
"@socket.io/admin-ui": "^0.3.0",
"clsx": "^1.1.1",
"lokijs": "^1.5.12",
"luxon": "^2.4.0",
"next": "12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-window": "^1.8.7",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"webrtc-adapter": "^8.1.1"
},
"devDependencies": {
"@types/lokijs": "^1.5.7",
"@types/luxon": "^2.3.2",
"@types/node": "^17.0.35",
"@types/react": "17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-window": "^1.8.5",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"license-checker-rseidelsohn": "^3.1.0",
"nodemon": "^2.0.16",
"prisma": "^3.14.0",
"ts-node": "^10.7.0",
"typescript": "4.6.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.6",
"sharp": "^0.30.4",
"utf-8-validate": "^5.0.9"
}
}