-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.96 KB
/
package.json
File metadata and controls
65 lines (65 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
57
58
59
60
61
62
63
64
65
{
"name": "nvtsk-deploy-gh",
"version": "1.0.5",
"description": "",
"main": "./dist/index.js",
"bin": {
"nvtsk-deploy-gh": "dist/index.js"
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/v-nvtsk/otus-jsbasic-dz50-nodejs.git"
},
"scripts": {
"start": "webpack --mode=development && node ./dist",
"prepare": "husky",
"build": "webpack --mode=production",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"watch": "nodemon --watch 'src/' --ext 'ts,json' --exec 'node --no-warnings --experimental-specifier-resolution=node --loader ts-node/esm ./src/index.ts'",
"tsc": "tsc --noEmit",
"lint-staged": "lint-staged",
"lint": "eslint --fix",
"format": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@jest/globals": "^29.7.0",
"@stylistic/eslint-plugin-ts": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.2",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"commitlint": "^19.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.17"
}
}