-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "consumer",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@pact-foundation/pact-web": "latest",
"axios": "^1.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.6.0",
"react-router-dom": "^7.6.0",
"spectre.css": "^0.5.8"
},
"scripts": {
"dev": "vite",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "biome lint .",
"lint:fix": "biome lint --write --unsafe .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write --unsafe .",
"cypress:run": "cypress run -e PACT_PROVIDER=$PACT_PROVIDER",
"start-and-wait": "make mocked & wait-on http://localhost:3000",
"start:and:test": "start-server-and-test start http://localhost:3000 cypress:run"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@pact-foundation/pact": "16.3.0",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"cypress": "15.14.0",
"start-server-and-test": "3.0.2",
"typescript": "5.9.3",
"vite": "8.0.8",
"wait-on": "9.0.5"
}
}