-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
50 lines (50 loc) · 1.51 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
{
"name": "@vkontakte/create-vk-mini-app",
"version": "2.0.10",
"description": "VK Mini Apps Boilerplate",
"repository": "https://github.com/VKCOM/create-vk-mini-app",
"homepage": "https://vk.com/dev/vk_apps_docs",
"main": "bin/create-vk-mini-app.js",
"bin": {
"create-vk-mini-app": "./bin/create-vk-mini-app.js"
},
"scripts": {
"build": "tsc && esbuild src/create-vk-mini-app.ts --bundle --platform=node --target=node18.0 --outfile=bin/create-vk-mini-app.js",
"lint:eslint": "eslint ./src --ext=ts",
"lint:prettier": "prettier --check --ignore-unknown .",
"lint:fix": "eslint ./src --ext=ts --fix",
"lint:ci": "yarn lint:eslint && yarn lint:prettier",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [],
"author": {
"name": "VK",
"url": "https://vk.com"
},
"license": "MIT",
"dependencies": {
"chalk": "4.1.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.0.0",
"@vkontakte/eslint-plugin": "^1.1.0",
"@vkontakte/prettier-config": "^0.1.0",
"esbuild": "^0.19.12",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1",
"typescript": "^5.1.6"
}
}