-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.26 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
{
"name": "i-gen",
"version": "0.1.0",
"private": true,
"homepage": "./",
"scripts": {
"analyze": "source-map-explorer 'build/assets/*.js'",
"start": "vite --host",
"dev": "npm run start",
"dev:build": "npm run build && npm run dev:serve",
"dev:serve": "vite preview --host",
"build": "vite build",
"lint": "npx eslint src",
"lint:fix": "npm run lint --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier --write",
"format": "npm run prettier:fix && npm run lint:fix",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@chakra-ui/react": "^2.4.6",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@hypertheme-editor/chakra-ui": "^0.1.5",
"@vercel/analytics": "^0.1.6",
"i18next": "^20.6.1",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-http-backend": "^2.1.1",
"localforage": "^1.10.0",
"loglevel": "^1.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-icons": "^4.7.1",
"react-toggle": "^4.1.3",
"react-use": "^17.4.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^3.0.1",
"@vitest/ui": "^0.28.4",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^21.1.0",
"prettier": "^2.8.2",
"sass": "^1.57.1",
"source-map-explorer": "^2.5.3",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"vite": "^4.0.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.14.1",
"vite-plugin-svgr": "^2.4.0",
"vite-plugin-webfont-dl": "^3.4.2",
"vitest": "^0.28.4"
}
}