generated from jpedroschmitz/gatsby-starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.98 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
{
"name": "cli-portfolio",
"description": "A static portfolio website based on the bash terminal.",
"version": "1.0.0",
"private": true,
"author": "Nico Ismaili",
"license": "MIT",
"scripts": {
"start": "npm run clean && gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"test": "vitest",
"test:watch": "vitest watch"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"clsx": "2.0.0",
"dotenv": "16.3.1",
"gatsby": "5.13.1",
"gatsby-plugin-image": "3.13.0",
"gatsby-plugin-react-i18next": "3.0.1",
"gatsby-plugin-sharp": "5.13.0",
"gatsby-source-filesystem": "5.13.0",
"gatsby-source-strapi": "3.3.1",
"gatsby-transformer-inline-svg": "1.2.0",
"gatsby-transformer-remark": "6.13.0",
"gatsby-transformer-sharp": "5.13.0",
"i18next": "23.7.13",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-i18next": "14.0.0",
"react-icons": "4.12.0",
"react-markdown": "8.0.7",
"rehype-react": "8.0.0",
"tsconfig-paths-webpack-plugin": "4.1.0"
},
"devDependencies": {
"@babel/preset-react": "7.23.3",
"@babel/preset-typescript": "7.23.3",
"@commitlint/cli": "18.4.3",
"@commitlint/config-conventional": "18.4.3",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.5",
"@testing-library/react": "14.1.2",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "20.10.1",
"@types/react": "18.2.39",
"@types/react-dom": "18.2.17",
"@types/react-helmet": "6.1.11",
"@typescript-eslint/eslint-plugin": "6.13.1",
"@typescript-eslint/parser": "6.13.1",
"@vitejs/plugin-react": "4.2.0",
"autoprefixer": "10.4.16",
"babel-preset-gatsby": "3.12.1",
"c8": "8.0.1",
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-n": "16.3.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"gatsby-plugin-postcss": "6.12.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jsdom": "23.0.1",
"lint-staged": "15.1.0",
"postcss": "8.4.31",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "0.5.7",
"tailwindcss": "3.3.5",
"typescript": "5.3.2",
"vite-tsconfig-paths": "4.2.1",
"vitest": "0.34.6"
}
}