This repository was archived by the owner on Nov 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 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
71
72
{
"name": "no-pallets",
"version": "1.0.2",
"description": "Next + Apollo + Hasura",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "eslint ./ --ext js,jsx,ts,tsx",
"format": "prettier --write .",
"graphql:types": "graphql-codegen --config codegen.yml -r dotenv/config"
},
"keywords": [
"nextjs",
"graphql",
"postgres"
],
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.0.0",
"aws-sdk": "^2.853.0",
"bcryptjs": "^2.4.3",
"graphql": "^15.6.1",
"jsonwebtoken": "^8.5.1",
"next": "^12.0.4",
"next-apollo": "^5.0.4",
"next-auth": "^3.29.0",
"next-fonts": "^1.5.1",
"next-server": "^9.0.5",
"node-sass": "5.0.0",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-dom": "^17.0.2",
"swiper": "^6.5.8",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "2.2.1",
"@graphql-codegen/introspection": "2.1.0",
"@graphql-codegen/typescript": "2.2.4",
"@graphql-codegen/typescript-operations": "2.1.8",
"@graphql-codegen/typescript-react-apollo": "3.1.6",
"@types/node": "^16.11.4",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"autoprefixer": "^10.2.4",
"eslint": "<8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"postcss": "^8.2.10",
"prettier": "^2.4.1",
"tailwindcss": "^2.0.3",
"typescript": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js}": [
"yarn lint",
"yarn format"
]
}
}