-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.59 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
{
"name": "TrafficSource",
"private": true,
"version": "0.0.0",
"type": "module",
"homepage": "https://evgeniywis.github.io/TrafficSource/",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"deploy": "gh-pages -d build",
"lint:ts": "eslint \"**/*.{ts,tsx}\"",
"lint:ts:fix": "eslint \"**/*.{ts,tsx}\" --fix",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:scss:fix": "npx stylelint \"**/*.scss\" --fix",
"storybook": "storybook dev -p 6006",
"test:ui": "npx loki test --port 6006 & npm run test:ui:report",
"test:ui:ok": "npx loki approve",
"test:ui:report:json": "node scripts/generate-visual-json-report.cjs",
"test:ui:report:html": "npx reg-cli --from .loki/report.json --report .loki/report.html",
"test:ui:report": "npm run test:ui:report:json && npm run test:ui:report:html"
},
"dependencies": {
"@eslint/compat": "^1.2.5",
"@splinetool/react-spline": "^4.0.0",
"react": "^18.3.1",
"react-animated-numbers": "^0.18.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.1.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.15.0",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-onboarding": "^8.4.7",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.1",
"gh-pages": "^6.2.0",
"globals": "^15.12.0",
"loki": "^0.35.1",
"prettier": "3.4.2",
"reg-cli": "^0.18.9",
"sass-embedded": "^1.82.0",
"storybook": "^8.4.7",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1",
"vite-plugin-svgr": "^4.3.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"loki": {
"configurations": {
"chrome.laptop": {
"target": "chrome.app",
"width": 1366,
"height": 768,
"deviceScaleFactor": 1,
"mobile": false
},
"chrome.iphone7": {
"target": "chrome.app",
"preset": "iPhone 7"
}
}
},
"overrides": {
"loki": {
"@storybook/react": "$@storybook/react"
}
}
}