-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.13 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
{
"name": "chatterz",
"version": "0.1.0",
"private": true,
"description": "A JAM stack PWA, real-time messaging web app built with GraphQL, Nexus schema, Apollo, React, TypeScript, Next.js, JWT and MongoDB. ",
"keywords": [
"chat",
"PWA",
"React",
"TypeScript",
"Next.js",
"GraphQL",
"JWT",
"next-auth"
],
"author": "Kaushal",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:server": "tsc -p ./server/",
"start:server": "node server/dist/server.js",
"watch": "tsc -w -p ./server/",
"dev:server": "nodemon server/dist/server.js"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@ideasio/add-to-homescreen-react": "^1.0.7",
"apollo-server-micro": "^2.23.0",
"apos-to-lex-form": "^1.0.5",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^15.5.0",
"md5": "^2.3.0",
"mongoose": "^5.9.13",
"natural": "^5.0.3",
"next": "10.2.0",
"next-auth": "^3.13.2",
"next-pwa": "^5.0.6",
"nextjs-progressbar": "^0.0.9",
"nexus": "^1.0.0",
"peerjs": "^1.3.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"reactstrap": "^8.9.0",
"socket.io": "^4.1.1",
"socket.io-client": "^4.1.1",
"spelling-corrector": "^3.0.0",
"stopword": "^1.0.7",
"swr": "0.5.6",
"uuidv4": "^6.2.8"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.5"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/natural": "^2.1.1",
"@types/next-auth": "^3.7.2",
"@types/node": "^15.0.2",
"@types/react": "^17.0.3",
"@types/socket.io": "^2.1.13",
"@types/stopword": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}