-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.88 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
{
"name": "bernardopereira.dev",
"version": "1.0.0",
"description": "Meu site/blog pessoal",
"main": "",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:pre-commit": "eslint --ext .js,.jsx,.ts,.tsx --fix",
"lint:style": "stylelint \"**/*.css.ts\"",
"prepare": "husky install",
"dependencies:outdated": "npm outdated"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BernardoSemiOficial/bernardopereira.dev.git"
},
"keywords": [
"blog",
"site",
"personal"
],
"author": "Bernardo Pereira",
"license": "MIT",
"bugs": {
"url": "https://github.com/BernardoSemiOficial/bernardopereira.dev/issues"
},
"homepage": "https://github.com/BernardoSemiOficial/bernardopereira.dev#readme",
"lint-staged": {
"*.{css.ts,module.css,css}": [
"stylelint"
],
"*.{js,jsx,ts,tsx,css.ts}": [
"pretty-quick --staged",
"npm run lint:pre-commit"
]
},
"dependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-rest-endpoint-methods": "^13.2.4",
"@radix-ui/react-toggle": "^1.0.3",
"@vanilla-extract/css": "^1.15.2",
"i18next": "^23.11.5",
"next": "^12.3.4",
"next-i18next": "^15.3.1",
"octokit": "^4.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-gtm-module": "^2.0.11",
"react-i18next": "^14.1.2",
"react-icons": "^5.3.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.13",
"@types/node": "^18.15.10",
"@types/react": "17.0.43",
"@types/react-dom": "^18.0.6",
"@types/react-gtm-module": "^2.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@vanilla-extract/next-plugin": "^2.4.6",
"@vanilla-extract/recipes": "^0.5.5",
"eslint": "^8.36.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-import-helpers": "^1.3.1",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.6.3"
},
"engines": {
"npm": ">= 8.15.0",
"node": ">= 16.17.1"
}
}