-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
116 lines (116 loc) · 3.67 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
{
"name": "@votingworks/scan-frontend",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0-only",
"files": [
"build",
"Makefile",
"prodserver"
],
"scripts": {
"build": "pnpm --filter $npm_package_name... build:self",
"build:self": "pnpm type-check && vite build",
"build:stubs": "script/build-stubs fs:src/stubs/fs.ts os:src/stubs/os.ts",
"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 scan",
"start:core": "pnpm -w run-dev scan --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": "TZ=America/Anchorage vitest run --coverage",
"test:coverage": "TZ=America/Anchorage vitest --coverage",
"test:watch": "TZ=America/Anchorage 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": {
"@tanstack/react-query": "4.32.1",
"@votingworks/basics": "workspace:*",
"@votingworks/dev-dock-frontend": "workspace:*",
"@votingworks/grout": "workspace:*",
"@votingworks/logging": "workspace:*",
"@votingworks/types": "workspace:*",
"@votingworks/ui": "workspace:*",
"@votingworks/utils": "workspace:*",
"base64-js": "1.5.1",
"buffer": "^6.0.3",
"debug": "4.3.4",
"dotenv": "16.3.1",
"dotenv-expand": "9.0.0",
"http-proxy-middleware": "3.0.3",
"normalize.css": "^8.0.1",
"path": "^0.12.7",
"pluralize": "8.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^5.3.4",
"setimmediate": "^1.0.5",
"styled-components": "^5.3.11",
"use-sound": "^4.0.1",
"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/connect": "^3.4.35",
"@types/debug": "4.1.8",
"@types/history": "4.7.11",
"@types/kiosk-browser": "workspace:*",
"@types/node": "20.16.0",
"@types/pluralize": "^0.0.29",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-router-dom": "^5.3.3",
"@types/setimmediate": "^1.0.2",
"@types/styled-components": "^5.1.26",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^1.3.2",
"@vitest/coverage-istanbul": "^2.1.8",
"@votingworks/backend": "workspace:*",
"@votingworks/fixtures": "workspace:*",
"@votingworks/grout-test-utils": "workspace:*",
"@votingworks/monorepo-utils": "workspace:*",
"@votingworks/printing": "workspace:*",
"@votingworks/scan-backend": "workspace:*",
"@votingworks/test-utils": "workspace:*",
"@votingworks/usb-drive": "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",
"vite": "4.5.2",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]",
"vx": {
"env": {
"VX_MACHINE_TYPE": "scan"
},
"isBundled": true,
"services": [
"../backend"
]
}
}