generated from jpedroschmitz/typescript-nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) Β· 2.71 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
{
"name": "technical-intelligence-site",
"description": "Best website for a best dj and producer",
"version": "1.0.0",
"private": true,
"author": "Daniel Luiz Alves <daniel.madeireira@gmail.com> ",
"license": "MIT",
"keywords": [
"dj",
"producer",
"typescript"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz",
"codegen": "graphql-codegen --config codegen.yml"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@brainhubeu/react-carousel": "2.0.4",
"bulma": "0.9.3",
"emailjs": "3.8.0",
"emailjs-com": "3.2.0",
"graphql": "16.6.0",
"i18next": "21.6.14",
"i18next-browser-languagedetector": "6.1.4",
"next": "12.1.4",
"node-sass": "7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "7.29.0",
"react-i18next": "11.16.2",
"react-icons": "4.3.1",
"react-image-gallery": "1.2.7",
"react-scroll-to-top": "1.0.8",
"react-toastify": "8.2.0",
"styled-components": "5.3.5",
"urql": "3.0.3"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@graphql-codegen/cli": "2.16.1",
"@graphql-codegen/import-types-preset": "2.2.6",
"@graphql-codegen/typescript": "2.8.5",
"@graphql-codegen/typescript-operations": "2.5.10",
"@graphql-codegen/typescript-urql": "3.7.3",
"@types/brainhubeu__react-carousel": "2.0.5",
"@types/node": "16.11.26",
"@types/react": "17.0.43",
"@types/react-dom": "17.0.14",
"@types/react-image-gallery": "1.0.5",
"@types/styled-components": "5.1.24",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"babel-loader": "^8.2.4",
"babel-plugin-styled-components": "2.0.6",
"commitizen": "4.2.4",
"css-loader": "^5.1.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.12.0",
"eslint-config-next": "12.1.4",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"prettier": "2.6.2",
"sass": "1.50.0",
"sass-loader": "^10",
"style-loader": "^2.0.0",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"resolutions": {
"styled-components": "^5"
}
}