-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
132 lines (132 loc) · 4.33 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@votingworks/design-frontend",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-only",
"files": [
"build",
"Makefile",
"prodserver"
],
"scripts": {
"build": "is-ci build:ci build:dev",
"build:ci": "pnpm --filter $npm_package_name... --sequential build:self",
"build:dev": "pnpm --filter $npm_package_name... build:self",
"build:prod": "pnpm --filter-prod $npm_package_name... build:self",
"build:self": "pnpm type-check && vite build",
"clean": "pnpm --filter $npm_package_name... clean:self",
"clean:self": "rm -rf build",
"format": "prettier '**/*.+(css|graphql|json|less|md|mdx|sass|scss|yaml|yml)' --write",
"lint": "pnpm type-check && eslint . && pnpm stylelint:run",
"lint:fix": "pnpm type-check && eslint . --fix && pnpm stylelint:run:fix",
"pre-commit": "lint-staged",
"start": "pnpm -w run-dev design",
"start:core": "pnpm -w run-dev design --core-only",
"stylelint:run": "stylelint 'src/**/*.{js,jsx,ts,tsx}'",
"stylelint:run:fix": "stylelint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"test": "is-ci test:ci test:watch",
"test:ci": "vitest run --coverage",
"test:coverage": "vitest --coverage",
"test:watch": "vitest",
"type-check": "tsc --build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@sentry/browser": "^8.51.0",
"@tanstack/react-query": "4.32.1",
"@tiptap/extension-bold": "^2.6.6",
"@tiptap/extension-bullet-list": "^2.6.6",
"@tiptap/extension-document": "^2.6.6",
"@tiptap/extension-dropcursor": "^2.6.6",
"@tiptap/extension-gapcursor": "^2.6.6",
"@tiptap/extension-hard-break": "^2.6.6",
"@tiptap/extension-history": "^2.6.6",
"@tiptap/extension-image": "^2.6.6",
"@tiptap/extension-italic": "^2.6.6",
"@tiptap/extension-list-item": "^2.6.6",
"@tiptap/extension-ordered-list": "^2.6.6",
"@tiptap/extension-paragraph": "^2.6.6",
"@tiptap/extension-strike": "^2.6.6",
"@tiptap/extension-table": "^2.6.6",
"@tiptap/extension-table-cell": "^2.6.6",
"@tiptap/extension-table-header": "^2.6.6",
"@tiptap/extension-table-row": "^2.6.6",
"@tiptap/extension-text": "^2.6.6",
"@tiptap/extension-underline": "^2.6.6",
"@tiptap/pm": "^2.6.6",
"@tiptap/react": "^2.6.6",
"@votingworks/basics": "workspace:*",
"@votingworks/design-backend": "workspace:*",
"@votingworks/grout": "workspace:*",
"@votingworks/types": "workspace:*",
"@votingworks/ui": "workspace:*",
"@votingworks/utils": "workspace:*",
"buffer": "^6.0.3",
"debug": "4.3.4",
"dotenv": "16.3.1",
"dotenv-expand": "9.0.0",
"esbuild": "0.21.2",
"esbuild-runner": "2.2.2",
"js-file-download": "0.4.12",
"nanoid": "^3.3.7",
"normalize.css": "^8.0.1",
"path": "^0.12.7",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-flip-toolkit": "^7.1.0",
"react-pdf": "7.7.3",
"react-router-dom": "^5.3.4",
"sanitize-html": "^2.13.0",
"styled-components": "^5.3.11",
"util": "^0.12.4",
"zod": "3.23.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^13.5.0",
"@types/debug": "4.1.8",
"@types/history": "4.7.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/sanitize-html": "^2.13.0",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.9",
"@types/tmp": "0.2.4",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/coverage-istanbul": "^2.1.8",
"@votingworks/fixtures": "workspace:*",
"@votingworks/grout-test-utils": "workspace:*",
"@votingworks/monorepo-utils": "workspace:*",
"@votingworks/test-utils": "workspace:*",
"eslint-plugin-vx": "workspace:*",
"history": "4.10.1",
"is-ci-cli": "2.2.0",
"jsdom": "20.0.1",
"lint-staged": "11.0.0",
"react-app-polyfill": "3.0.0",
"sort-package-json": "^1.50.0",
"tmp": "^0.2.1",
"vite": "4.5.2",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@8.15.5",
"vx": {
"isBundled": true,
"services": [
"../backend"
]
}
}