This repository has been archived by the owner on Nov 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
84 lines (84 loc) · 2.3 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build:remix": "remix build",
"build:sass": "sass -Inode_modules/@uswds -Inode_modules/@uswds/uswds/packages app/theme.scss app/theme.css",
"build": "run-s build:sass build:remix",
"dev:remix": "remix dev --manual -c 'arc sandbox -e testing --host localhost'",
"dev:sass": "sass --watch -Inode_modules/@uswds -Inode_modules/@uswds/uswds/packages app/theme.scss app/theme.css",
"dev": "run-p 'dev:*'",
"prepare": "husky install",
"clean": "rimraf --glob build 'app/theme.css*' 'sam.*'",
"deploy": "arc deploy --no-hydrate --prune --production"
},
"prettier": {
"importOrder": [
"^[@a-zA-Z].*(?<!(?:css|gif|json|png|svg))$",
"^[.~/].*(?<!(?:css|gif|json|png|svg))$",
""
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"prettier"
],
"rules": {
"prefer-const": "error"
},
"ignorePatterns": [
"*.mdx"
]
},
"dependencies": {
"@remix-run/architect": "^1.19.2",
"@remix-run/css-bundle": "^1.19.2",
"@remix-run/node": "^1.19.2",
"@remix-run/react": "^1.19.2",
"@trussworks/react-uswds": "^5.1.1",
"cross-env": "^7.0.3",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@architect/architect": "^10.12.1",
"@remix-run/dev": "^1.19.2",
"@remix-run/eslint-config": "^1.19.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@types/source-map-support": "^0.5.6",
"autoprefixer": "^10.4.15",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.3",
"npm-run-all": "^4.1.5",
"postcss-csso": "^6.0.1",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"sass": "^1.64.2",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=18"
},
"browserslist": [
"> 2%",
"last 2 versions",
"IE 11",
"not dead"
]
}