-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.88 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
{
"private": true,
"scripts": {
"dev": "next dev -p 8080",
"build": "next build",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"e2e": "start-server-and-test dev http://localhost:8080 \"cypress open --e2e\"",
"e2e:headless": "start-server-and-test dev http://localhost:8080 \"cypress run --e2e\"",
"component": "cypress open --component",
"component:headless": "cypress run --component",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:regression": "loki test",
"test:regression:refs": "loki update",
"test:regression:approve": "loki approve"
},
"dependencies": {
"axios": "^1.4.0",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@storybook/addon-essentials": "^7.0.9",
"@storybook/addon-interactions": "^7.0.9",
"@storybook/addon-links": "^7.0.9",
"@storybook/blocks": "^7.0.9",
"@storybook/nextjs": "^7.0.9",
"@storybook/react": "^7.0.9",
"@storybook/testing-library": "^0.0.14-next.2",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "18.0.28",
"@types/testing-library__jest-dom": "5.14.5",
"cypress": "^12.13.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"loki": "0.31.1",
"start-server-and-test": "^2.0.0",
"storybook": "^7.0.9",
"typescript": "4.9.5"
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
},
"chrome.iphone7": {
"target": "chrome.app",
"preset": "iPhone 7"
}
}
}
}