-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "quikpantry",
"version": "0.1.0",
"private": true,
"description": "A grocery PWA made with React, TypeScript, Next.js, JWT.",
"keywords": [
"grocery",
"PWA",
"React",
"TypeScript",
"Next.js",
"JWT",
"next-auth"
],
"author": "Kaushal",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate:faker": "node ./scripts/fakeDataMaker.js"
},
"dependencies": {
"@apollo/client": "^3.3.15",
"@ideasio/add-to-homescreen-react": "^1.0.7",
"apollo-server-micro": "^2.23.0",
"graphql": "^15.5.0",
"mongoose": "^5.9.13",
"next": "10.0.8",
"next-auth": "^3.13.2",
"next-pwa": "^5.0.6",
"nextjs-progressbar": "^0.0.8",
"nexus": "^1.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "0.5.4"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.5"
},
"license": "MIT",
"devDependencies": {
"@types/faker": "^5.5.3",
"@types/next-auth": "^3.7.2",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"eslint-plugin-react": "^7.22.0",
"faker": "^5.5.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}