-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 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
{
"name": "picker-wheel",
"version": "1.0.0",
"description": "a picker wheel that reads input from twitch",
"main": "index.js",
"repository": "[email protected]:nuiofrd/twitch-wheel.git",
"author": "Brenden Bunker",
"license": "MIT",
"private": false,
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-syntax-flow": "^7.16.7",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "^1.0.5",
"@prisma/client": "^3.10.0",
"@quixo3/prisma-session-store": "^3.1.3",
"@tailwindcss/forms": "^0.4.0",
"@vitejs/plugin-react": "^1.2.0",
"autoprefixer": "^10.4.2",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"helmet": "^5.0.2",
"passport": "^0.5.2",
"passport-twitch-latest": "^1.0.0",
"postcss": "^8.4.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"tailwindcss": "^3.0.23",
"tmi.js": "^1.8.5",
"vite": "^2.8.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^17.0.21",
"@types/passport": "^1.0.7",
"@types/passport-twitch-latest": "^1.0.1",
"@types/react": "^17.0.39",
"@types/tmi.js": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"nodemon": "^2.0.15",
"prisma": "^3.10.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"scripts": {
"server": "nodemon server/index.ts",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview "
}
}