-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 3.04 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": "gatsby-uswds-ts-starter",
"description": "A TypeScript starter for Gatsby that includes USWDS and trussworks",
"version": "1.0.0",
"private": true,
"author": "Vim Shah <[email protected]>",
"license": "MIT",
"keywords": [
"gatsby",
"starter",
"typescript",
"uswds",
"trussworks",
"i18n"
],
"scripts": {
"start": "gatsby develop",
"build": "gatsby build --prefix-paths",
"serve": "gatsby serve --prefix-paths",
"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",
"gc": "node .generate_component $1",
"intl:extract": "formatjs extract 'src/**/*.tsx' --out-file lang/en-US-extract.json",
"intl:createEnJson": "node lang/createEnJson && prettier --ignore-path .gitignore \"lang/**/*.+(ts|js|tsx|json)\" --write"
},
"engines": {
"node": ">=18.0.0 || 14.21.1 || 14.17.5"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": []
},
"dependencies": {
"@formatjs/cli": "5.1.12",
"@uswds/uswds": "3.3.0",
"dotenv": "16.0.3",
"gatsby": "5.2.0",
"gatsby-plugin-i18n-l10n": "5.2.2",
"gatsby-plugin-pnpm": "1.2.10",
"gatsby-plugin-sass": "6.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-intl": "6.2.5",
"react-test-renderer": "18.2.0",
"sass": "1.57.1",
"tsconfig-paths-webpack-plugin": "4.0.0"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@testing-library/dom": "8.19.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@trussworks/react-uswds": "4.0.0",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-helmet": "6.1.6",
"@types/react-test-renderer": "18.0.0",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"@vitejs/plugin-react": "2.2.0",
"babel-eslint": "10.1.0",
"babel-preset-gatsby": "3.2.0",
"c8": "7.12.0",
"eslint": "8.34.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"jsdom": "20.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"typescript": "4.9.4",
"vite-tsconfig-paths": "3.6.0",
"vitest": "0.25.3"
}
}