-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
60 lines (60 loc) · 1.78 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
{
"name": "hpt-validator-tool",
"version": "1.0.13",
"author": "CMS Open Source <[email protected]>",
"license": "CC0-1.0",
"description": "Validator tool for CMS Hospital Price Transparency machine-readable files",
"type": "module",
"scripts": {
"format": "prettier --write **/*.{js,jsx,css} !dist",
"dev": "vite",
"start": "vite",
"build": "vite build --base=/hpt-tool/",
"serve": "vite preview",
"deploy": "echo 'NOT IMPLEMENTED'",
"lint": "eslint \"./src/**/*.{js,jsx,ts}\"",
"lint:fix": "eslint --quiet --fix \"./src/**/*.{js,jsx,ts}\"",
"prettier": "prettier --check \"./src/**/*.{js,jsx,css}\"",
"prettier:fix": "prettier --write \"./src/**/*.{js,jsx,css}\"",
"test": "vitest"
},
"devDependencies": {
"@babel/core": "^7.25.8",
"@babel/eslint-parser": "^7.25.8",
"@babel/preset-env": "^7.25.8",
"@rollup/plugin-babel": "^6.0.4",
"@types/papaparse": "^5.3.14",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"esm": "^3.2.25",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"vite": "^5.4.9",
"vitest": "^2.1.4",
"jsdom": "^25.0.1"
},
"dependencies": {
"@babel/preset-react": "^7.25.7",
"@trussworks/react-uswds": "^9.1.0",
"@uswds/uswds": "3.9.0",
"buffer": "^6.0.3",
"classnames": "^2.5.1",
"clipboard": "^2.0.11",
"hpt-validator": "^1.9.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"validator": "^13.12.0"
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}