-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.87 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
117
{
"name": "cyber-front-template",
"version": "1.0.0",
"description": "Simple TS+React+Redux(RTK) template",
"license": "MIT",
"author": "CyberGizer",
"homepage": "https://cybergizer-hq.github.io/euruko-2023/",
"main": "src/main.tsx",
"scripts": {
"audit:deadcode": "npx ts-prune >deadcode.txt",
"build": "vite build --base=./",
"build:test": "npm run build -- --mode test",
"build-storybook": "storybook build",
"cy:open": "cypress open",
"cy:run": "cypress run --browser electron",
"cy:verify": "cypress verify",
"deploy": "gh-pages -d build",
"format": "node ./scripts/lint.mjs --fix",
"gen:theme-typings": "chakra-cli tokens src/shared/theme/theme.tsx",
"postinstall": "husky install && npm run gen:theme-typings",
"lint": "node ./scripts/lint.mjs",
"preview": "vite preview",
"preview:test": "npm run preview -- --mode test",
"start": "vite",
"start:test": "vite --mode test",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:ci": "vitest run --coverage --reporter=junit --outputFile.junit=./junit/vitest.xml",
"test:integration:debug": "npm run build:test && npm run preview:test"
},
"dependencies": {
"@chakra-ui/react": "2.6.1",
"@chakra-ui/styled-system": "2.9.0",
"@emotion/react": "11.10.8",
"@emotion/styled": "11.10.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.11.0",
"react-router-hash-link": "2.4.3",
"react-slideshow-image": "4.2.1",
"react-use": "17.4.0"
},
"devDependencies": {
"@babel/eslint-parser": "7.21.8",
"@chakra-ui/cli": "2.4.1",
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@emotion/eslint-plugin": "11.10.0",
"@storybook/addon-actions": "7.0.8",
"@storybook/addon-essentials": "7.0.8",
"@storybook/addon-interactions": "7.0.8",
"@storybook/addon-links": "7.0.8",
"@storybook/node-logger": "7.0.8",
"@storybook/react": "7.0.8",
"@storybook/react-vite": "7.0.8",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@testing-library/user-event": "14.4.3",
"@types/fs-extra": "11.0.1",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.1",
"@types/react-router-hash-link": "2.4.6",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"@vitejs/plugin-react": "4.0.0",
"@vitejs/plugin-react-swc": "3.3.0",
"@vitest/coverage-c8": "0.30.1",
"browserslist-to-esbuild": "1.2.0",
"chalk": "5.2.0",
"confusing-browser-globals": "1.0.11",
"cypress": "12.11.0",
"eslint": "8.39.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.6.12",
"eslint-plugin-testing-library": "5.10.3",
"execa": "7.1.1",
"fs-extra": "11.1.1",
"gh-pages": "5.0.0",
"husky": "8.0.3",
"jsdom": "22.0.0",
"lint-staged": "13.2.2",
"postcss": "8.4.23",
"prettier": "2.8.8",
"prettier-package-json": "2.8.0",
"prettier-plugin-sort-json": "1.0.0",
"rollup-plugin-visualizer": "5.9.0",
"semantic-release": "21.0.2",
"storybook": "7.0.8",
"ts-prune": "0.10.3",
"typescript": "5.0.4",
"vite": "4.3.4",
"vite-plugin-eslint": "1.8.1",
"vite-plugin-svgr": "3.2.0",
"vitest": "0.30.1"
},
"engines": {
"node": "18.16.0"
},
"publishConfig": {
"access": "restricted"
},
"browserslist": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}