This repository has been archived by the owner on Oct 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
106 lines (106 loc) · 2.79 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "botble-graphql-next",
"version": "0.0.4",
"description": "The migration for Botble from CMS(Laravel) to GraphQL + Next.js",
"keywords": [
"graphql",
"nextjs",
"urql"
],
"homepage": "https://graphql-next.toiyeulaptrinh.com",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "eslint --ignore-path .gitignore --ignore-path .prettierignore",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"@iconify/icons-cil": "^1.0.0",
"@iconify/icons-fa-solid": "^1.0.7",
"@iconify/icons-icomoon-free": "^1.0.3",
"@iconify/icons-ion": "^1.0.10",
"@iconify/icons-mdi": "^1.0.65",
"@iconify/icons-simple-line-icons": "^1.0.1",
"@iconify/icons-vaadin": "^1.0.3",
"@iconify/react": "^1.1.1",
"clsx": "^1.1.0",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"glightbox": "^2.0.5",
"graphql": "^14.6.0",
"graphql-tag": "^2.10.3",
"isomorphic-unfetch": "^3.0.0",
"next": "9.2.1",
"next-compose-plugins": "^2.2.0",
"next-urql": "^0.2.5",
"prop-types": "^15.7.2",
"ramda": "^0.27.0",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-is": "^16.12.0",
"react-use": "^13.24.0",
"styled-components": "^5.0.1",
"tiny-slider": "^2.9.2",
"urql": "^1.8.2"
},
"devDependencies": {
"@babel/plugin-proposal-do-expressions": "^7.8.3",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@fullhuman/postcss-purgecss": "^2.0.6",
"@next/bundle-analyzer": "^9.2.1",
"@urql/devtools": "^0.1.2",
"babel-eslint": "^10.0.3",
"babel-plugin-import": "^1.13.0",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"postcss-nested": "^4.2.1",
"prettier": "^1.19.1",
"tailwindcss": "^1.2.0"
},
"engines": {
"node": ">= 13.3.0"
},
"browserslist": [
"> 0.25%",
"not ie 11",
"not op_mini all"
],
"repository": {
"type": "git+ssh",
"url": "[email protected]:nghiepit/botble-graphql-next.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{css,md,json,html,yml}": [
"prettier --write",
"git add"
],
"*.{js,jsx}": [
"npm run lint:fix --",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"author": "Nghiep <[email protected]>",
"license": "MIT"
}