-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1 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
{
"private": true,
"name": "frontend",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"clear-pacts": "rm -rf ./pacts",
"test":"yarn clear-pacts && jest"
},
"dependencies": {
"axios": "^0.21.1",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@pact-foundation/pact": "^12.0.0",
"@pactflow/pact-msw-adapter": "^2.0.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/testing-library__jest-dom": "5.14.5",
"cross-env": "^7.0.3",
"fs-extra": "^11.1.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "29.5.0",
"msw": "^1.2.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}