-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 KB
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
{
"name": "share",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "npm run lint:js && npm run lint:css",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint .",
"fix": "npm run fix:js && npm run fix:css",
"fix:css": "stylelint --cache --fix \"**/*.css\"",
"fix:js": "eslint . --cache --fix",
"preview": "vite preview",
"format": "prettier --write --log-level warn .",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"i18n:extract": "formatjs extract 'src/**/*.ts*' --ignore='**/*.d.ts' --out-file temp.json --flatten --id-interpolation-pattern '[sha512:contenthash:base64:6]' && formatjs compile 'temp.json' --out-file lang/en.json && rm temp.json"
},
"dependencies": {
"@nozbe/microfuzz": "^1.0.0",
"@reduxjs/toolkit": "^2.9.0",
"@tailwindcss/vite": "^4.1.13",
"@tanstack/react-query": "^5.87.1",
"clsx": "^2.1.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-intl": "^7.1.11",
"react-redux": "^9.2.0",
"tailwindcss": "^4.1.13",
"vite-plugin-svgr": "^4.5.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@formatjs/cli": "^6.7.4",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"babel-plugin-formatjs": "^10.5.41",
"eslint": "^9.33.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"prettier": "3.6.2",
"stylelint": "^17.4.0",
"stylelint-plugin-logical-css": "^2.0.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}