-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "wordify",
"version": "0.1.0",
"description": "A social word game web app",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "playwright test",
"lint": "next lint"
},
"dependencies": {
"connect-mongo": "^4.6.0",
"express-session": "^1.17.2",
"mongoose": "^6.3.0",
"next": "^12.1.5",
"next-connect": "^0.12.2",
"next-session": "^4.0.4",
"node-cron": "^3.0.0",
"passport": "^0.5.2",
"passport-google-oauth20": "^2.0.0",
"react": "^18.0.0",
"react-bootstrap": "^2.3.0",
"react-dom": "^18.0.0",
"react-icons": "^4.3.1",
"swr": "^1.3.0",
"use-debounce": "^8.0.1"
},
"devDependencies": {
"@playwright/test": "^1.21.1",
"@types/node": "^17.0.24",
"@types/passport": "^1.0.7",
"@types/passport-google-oauth20": "^2.0.11",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@types/speakeasy": "^2.0.7",
"base32.js": "^0.1.0",
"eslint": "8.15.0",
"eslint-config-next": "12.1.6",
"jest": "^27.5.1",
"speakeasy": "^2.0.0",
"typescript": "^4.6.3"
},
"license": "AGPL-3.0-or-later",
"author": "Wordify Team",
"repository": {
"type": "git",
"url": "git+https://github.com/NicholasBottone/Wordify.git"
},
"homepage": "https://github.com/NicholasBottone/Wordify",
"overrides": {
"react": "$react",
"react-dom": "$react-dom"
}
}