-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.08 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.08 KB
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
{
"name": "twitch-point-overlay",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --inspect -r ts-node/register src",
"build": "tsc --project tsconfig.server.json",
"start": "node dist",
"client:dev": "parcel watch ./client/index.html --dist-dir client-out",
"client:build": "parcel build ./client/index.html --dist-dir client-out"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/connect-redis": "^0.0.18",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/ioredis": "^4.28.10",
"@types/node": "^17.0.42",
"@types/passport": "^1.0.8",
"@types/react": "^18.0.12",
"@types/react-dom": "18",
"@types/styled-components": "^5.1.25",
"parcel": "^2.0.0-nightly.1122",
"prettier": "^2.7.0",
"prisma": "^3.15.1",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.0.0",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@hewmen/passport-twitch": "^1.0.4",
"@hookform/resolvers": "^2.9.1",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@oauth-everything/passport-twitch": "^1.0.3",
"@prisma/client": "3.15.1",
"@twurple/api": "^5.1.6",
"@twurple/auth": "^5.1.6",
"@twurple/pubsub": "^5.1.6",
"@uiw/react-codemirror": "^4.8.1",
"axios": "^0.27.2",
"buffer": "^6.0.3",
"connect-redis": "^6.1.3",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"framer-motion": "^6.3.11",
"ioredis": "^5.0.6",
"passport": "^0.6.0",
"process": "^0.11.10",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.32.1",
"react-live": "^2.4.1",
"react-router-dom": "^6.3.0",
"react-toastify": "^9.0.4",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"styled-components": "^5.3.5",
"sucrase": "^3.21.0",
"swr": "^1.3.0",
"zod": "^3.17.3",
"zod-form-data": "^1.2.0"
}
}