-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.18 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.18 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "qpp-submissions-docs",
"version": "0.1.0",
"license": "CC0-1.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"pretest": "npm run lint",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "jest --inspect-brk --runInBand --no-cache",
"serve:local": "npx serve dist",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"lint": "npm run lint:ts && npm run lint:css",
"lint:ts": "eslint './src/**/*.{ts,tsx}'",
"lint:css": "stylelint './src/**/*.scss'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CMSgov/qpp-submissions-docs.git"
},
"bugs": {
"url": "https://github.com/CMSgov/qpp-submissions-docs/issues"
},
"homepage": "https://cmsgov.github.io/qpp-submissions-docs",
"overrides": {
"react-day-picker": "^9.6.7",
"glob": "^10.5.0"
},
"dependencies": {
"@cmsgov/design-system": "12.4.1",
"@vitejs/plugin-react": "4.3.1",
"core-js": "3.36.0",
"font-awesome": "4.7.0",
"postcss": "8.4.35",
"postcss-scss": "4.0.9",
"react": "19.1.0",
"react-code-blocks": "0.1.6",
"react-dom": "19.1.0",
"react-router-dom": "7.6.3",
"react-router-hash-link": "2.4.3",
"sass": "1.64.0",
"typescript": "5.3.3",
"vite": "5.4.19",
"vite-tsconfig-paths": "4.3.1"
},
"devDependencies": {
"@emotion/is-prop-valid": "1.3.1",
"@eslint/eslintrc": "3.3.3",
"@eslint/js": "9.39.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.25",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@types/react-router-hash-link": "2.4.9",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"browserslist": "4.23.0",
"browserslist-to-esbuild": "2.1.1",
"eslint": "9.39.1",
"gh-pages": "6.3.0",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"styled-components": "6.1.19",
"stylelint": "16.6.1",
"stylelint-config-standard-scss": "13.0.0",
"ts-jest": "29.4.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "jest-environment-jsdom",
"setupFiles": ["<rootDir>/jest.setup.ts"],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|scss|less)$": "<rootDir>/__mocks__/styleMock.js"
},
"modulePaths": [
"<rootDir>/src"
],
"coverageProvider": "v8",
"coverageDirectory": "<rootDir>/coverage",
"coverageReporters": [
"text",
"text-summary",
"cobertura",
"html"
],
"coverageThreshold": {
"global": {
"statements": 96,
"branches": 95,
"functions": 91,
"lines": 96
}
}
}
}