-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "astro-react-uswds-starter",
"version": "2.0.0",
"description": "astro with react and us web design system (uswds)",
"type": "module",
"engines": {
"node": ">=18.14.0"
},
"scripts": {
"clean": "rm -rf dist && rm -rf node_modules/.astro && rm -rf .astro/",
"prettier": "prettier --write .",
"check:prettier": "prettier --check .",
"check:ts": "tsc --noEmit",
"check:astro": "astro check",
"check": "npm run check:prettier && npm run check:ts && npm run check:astro",
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm run clean",
"dev": "astro dev",
"start": "astro dev",
"prebuild": "NODE_ENV=production npm run clean",
"build": "NODE_ENV=production astro build",
"preview": "astro preview"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paulathevalley/astro-react-uswds-example.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/paulathevalley/astro-react-uswds-example/issues"
},
"homepage": "https://github.com/paulathevalley/astro-react-uswds-example#readme",
"dependencies": {
"@astrojs/check": "^0.5.5",
"@astrojs/sitemap": "^3.0.5",
"@uswds/uswds": "^3.6.1",
"astro": "^4.3.2",
"astro-i18n-aut": "^0.7.0",
"i18next": "^23.10.0",
"i18next-fs-backend": "^2.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@astrojs/react": "^3.0.10",
"prettier": "^3.2.2",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.70.0",
"typescript": "^5.2.2",
"vite-plugin-svgr": "^4.2.0"
}
}