-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.96 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.96 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
{
"name": "psumaps-frontend",
"version": "1.1.1",
"description": "Client applications of PSU Maps",
"type": "module",
"scripts": {
"web": "concurrently --kill-others \"npm run dev --prefix web\" \"npm run tailwind:watch --prefix web\"",
"native": "npm start --prefix native",
"storybook": "concurrently --kill-others \"npm run tailwind:watch --prefix web\" \"npm run storybook --prefix shared\"",
"build-storybook": "npm run build-storybook --prefix shared",
"test": "vitest --run",
"lint-staged": "lint-staged",
"prepare": "husky",
"ci-global": "npm ci && npm ci --prefix shared && npm ci --prefix web && npm ci --prefix native",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "npm run build --prefix web",
"build:analyze": "cross-env ANALYZE=true npm run build --prefix web"
},
"author": "psumaps team",
"license": "MPL-2.0",
"dependencies": {
"@tanstack/react-query": "^5.69.0",
"@tanstack/react-query-devtools": "^5.69.0",
"@telegram-apps/sdk-react": "^3.1.2",
"@types/geojson": "^7946.0.16",
"@vitejs/plugin-react-swc": "^3.8.0",
"@vkontakte/vk-bridge": "^2.15.6",
"react": "^19.0.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^3.0.9"
},
"devDependencies": {
"@types/react": "^19.0.10",
"@eslint/js": "^9.22.0",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"happy-dom": "^17.4.4",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "3.2.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}