-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2 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
{
"name": "angular-ru-interview-questions",
"version": "1.0.0",
"private": true,
"description": "Справочник с вопросами, ответами и практическими заданиями для подготовки разработчиков к техническим собеседованиям",
"homepage": "https://angular-ru.github.io/interview/",
"bugs": {
"url": "https://github.com/Angular-RU/angular-ru-interview-questions/issues"
},
"workspaces": ["apps/*/*", "apps/*/*/*"],
"repository": {
"type": "git",
"url": "git+https://github.com/Angular-RU/angular-ru-interview-questions.git"
},
"type": "module",
"license": "MIT",
"author": "angular-ru@yandex.ru",
"scripts": {
"predev": "npm run prebuild",
"dev": "astro dev",
"prebuild": "npm run build:public --workspaces --if-present",
"build": "astro build",
"postbuild": "pagefind --site dist --exclude-selectors \".sidebar-navigation, .site-search\"",
"preview": "astro preview",
"debug": "npm run build && astro preview --host 127.0.0.1 --port 4321",
"astro": "astro",
"format": "prettier \"!package-lock.json\" . --ignore-path .gitignore --write",
"format:check": "prettier \"!package-lock.json\" . --ignore-path .gitignore --check"
},
"devDependencies": {
"@astrojs/markdown-remark": "7.2.1",
"@astrojs/react": "6.0.1",
"@tailwindcss/vite": "4.3.2",
"@types/node": "26.1.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"astro": "7.0.6",
"highlight.js": "11.11.1",
"markdown-it": "14.2.0",
"markdown-it-anchor": "9.2.0",
"pagefind": "1.5.2",
"prettier": "3.8.4",
"prettier-plugin-astro": "0.14.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"rehype-raw": "7.0.0",
"sharp": "0.35.3",
"tailwindcss": "4.3.2",
"tsx": "4.20.6"
}
}