forked from CMSgov/hpt-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.38 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
85
86
87
88
89
90
91
92
93
{
"name": "hpt-validator-tool",
"version": "0.1.0",
"author": "CMS Open Source <[email protected]>",
"license": "CC0-1.0",
"description": "Validator tool for CMS Hospital Price Transparency machine-readable files",
"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}\""
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@types/papaparse": "^5.3.12",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"esm": "^3.2.25",
"prettier": "^2.8.8",
"prettier-eslint": "^15.0.1",
"vite": "^4.5.0"
},
"dependencies": {
"@babel/preset-react": "^7.23.3",
"@trussworks/react-uswds": "^4.2.1",
"@uswds/uswds": "3.1.0",
"buffer": "^6.0.3",
"classnames": "^2.3.2",
"clipboard": "^2.0.11",
"hpt-validator": "1.0.0-rc.3",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"validator": "^13.11.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:react/recommended"
],
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": [
"import",
"prettier",
"react"
],
"settings": {
"react": {
"version": "detect"
}
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"requireConfigFile": false,
"ecmaFeatures": {
"jsx": true
},
"babelOptions": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
}
}
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5"
}
}