forked from APL-Innovation-Lab/meeting-room
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev",
"format": "prettier -w .",
"lint": "eslint --fix --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc",
"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": {
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@trussworks/react-uswds": "^9.0.0",
"isbot": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^2.9.2",
"@remix-run/eslint-config": "^2.9.2",
"@types/postcss-js": "^4.0.4",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"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.5",
"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"
}
}