-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.25 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev --host",
"format": "prettier -w .",
"lint": "eslint --fix --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc",
"test": "npm run test:run",
"test:dev": "vitest dev",
"test:run": "vitest run",
"build": "remix vite:build",
"start": "remix-serve ./build/server/index.js",
"styles:compile-components": "tsx tailwindcss-uswds/build/compile-components.ts",
"styles:generate-theme": "tsx tailwindcss-uswds/build/generate-theme.ts"
},
"dependencies": {
"@deno/kv": "^0.8.2",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@std/async": "npm:@jsr/std__async@^1.0.5",
"@trussworks/react-uswds": "^9.0.0",
"isbot": "^4.1.0",
"mapbox-gl": "^3.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"validator": "^13.12.0",
"vitest": "^2.1.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@types/mapbox-gl": "^3.4.0",
"@types/postcss-js": "^4.0.4",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/validator": "^13.12.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.51.0",
"get-sass-vars": "^4.0.2",
"postcss": "^8.4.38",
"postcss-js": "^4.0.1",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.6.6",
"sass": "^1.77.6",
"scss-bundle": "^3.1.2",
"tailwindcss": "^3.4.4",
"tsx": "^4.15.7",
"typescript": "^5.4.5",
"uswds": "^2.14.0",
"vite": "^5.3.1",
"vite-tsconfig-paths": "^4.3.2"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"arrowParens": "avoid",
"plugins": [
"prettier-plugin-tailwindcss",
"prettier-plugin-organize-imports"
]
},
"engines": {
"node": ">=20.0.0"
}
}