-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "vk-cloud",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "ts-node src/index.ts",
"start:yandex": "ts-node src/yandex.ts",
"start:yandex:watcher": "YC_RUN_MODE=watcher ts-node src/yandex.ts",
"start:yandex:monitor": "YC_RUN_MODE=monitor ts-node src/yandex.ts",
"dev:web": "next dev web",
"build:web": "next build web",
"start:web": "next start web",
"build": "tsc --noEmit",
"lint": "tsc --noEmit",
"test": "echo \"No automated tests configured\" && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mantine/core": "^8.3.9",
"@mantine/hooks": "^8.3.9",
"@mantine/notifications": "^8.3.9",
"@tabler/icons-react": "^3.35.0",
"axios": "^1.13.2",
"better-sqlite3": "^12.5.0",
"next": "^16.0.7",
"react": "^19.2.1",
"react-dom": "^19.2.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/react": "19.2.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}