-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.82 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
{
"name": "alles-standard",
"description": "A TypeScript starter for Gatsby that includes all you need to build amazing projects",
"version": "1.0.0",
"private": true,
"author": "João Pedro Schmitz <hey@joaopedro.dev> (https://joaopedro.dev)",
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"typescript"
],
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit",
"lint": "eslint ",
"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 .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@eslint/compat": "1.2.0",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.12.0",
"@types/testing-library__jest-dom": "6.0.0",
"eslint": "9.12.0",
"gatsby": "5.13.7",
"gatsby-plugin-image": "3.13.1",
"gatsby-plugin-pnpm": "1.2.10",
"gatsby-plugin-sharp": "5.13.1",
"gatsby-source-filesystem": "5.13.1",
"gatsby-transformer-sharp": "5.13.1",
"globals": "15.11.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"tsconfig-paths-webpack-plugin": "4.1.0"
},
"devDependencies": {
"@babel/preset-react": "7.25.7",
"@babel/preset-typescript": "7.25.7",
"@chakra-ui/gatsby-plugin": "3.1.3",
"@chakra-ui/react": "2.10.4",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "20.16.12",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.9.0",
"@typescript-eslint/parser": "8.9.0",
"@vitejs/plugin-react": "4.3.2",
"babel-preset-gatsby": "3.13.2",
"c8": "10.1.2",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.0",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react-hooks": "5.0.0",
"framer-motion": "11.11.8",
"husky": "9.1.6",
"identity-obj-proxy": "3.0.0",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"react-icons": "5.3.0",
"typescript": "5.6.3",
"vite-tsconfig-paths": "5.0.1",
"vitest": "2.1.2"
}
}