-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
79 lines (79 loc) · 2.42 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
{
"name": "gatsby-starter-ts",
"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 <[email protected]> (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 --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": {
"gatsby": "5.9.0",
"gatsby-plugin-pnpm": "1.2.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsconfig-paths-webpack-plugin": "4.0.1"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.21.5",
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@testing-library/dom": "9.2.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "18.16.5",
"@types/react": "18.2.6",
"@types/react-dom": "18.2.4",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"@vitejs/plugin-react": "4.0.0",
"babel-preset-gatsby": "3.9.0",
"c8": "7.13.0",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jsdom": "22.0.0",
"lint-staged": "13.2.2",
"prettier": "2.8.8",
"typescript": "5.0.4",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.31.0"
}
}