|
3 | 3 | "description": "vtex plugin template", |
4 | 4 | "version": "0.0.0", |
5 | 5 | "bugs": "https://github.com/vtex/cli-plugin-template/issues", |
6 | | - "dependencies": { |
7 | | - "@oclif/command": "^1", |
8 | | - "@oclif/config": "^1", |
9 | | - "tslib": "^1" |
10 | | - }, |
11 | | - "devDependencies": { |
12 | | - "@oclif/dev-cli": "^1", |
13 | | - "@oclif/plugin-help": "^3", |
14 | | - "@types/jest": "^26.0.3", |
15 | | - "@types/node": "^14.0.14", |
16 | | - "eslint": "^6.8.0", |
17 | | - "eslint-config-oclif": "^3.1", |
18 | | - "eslint-config-vtex": "^12.3.0", |
19 | | - "globby": "^10", |
20 | | - "husky": "^4.2.5", |
21 | | - "jest": "^25.1.0", |
22 | | - "lint-staged": "^10.2.11", |
23 | | - "nodemon": "^2.0.2", |
24 | | - "nodemon-notifier-cli": "https://github.com/Slessi/nodemon-notifier-cli.git", |
25 | | - "prettier": "^2.0.1", |
26 | | - "ts-jest": "^25.2.1", |
27 | | - "ts-node": "^8", |
28 | | - "typescript": "^3.8.2", |
29 | | - "vtex": "^2.121.1" |
30 | | - }, |
| 6 | + "homepage": "https://github.com/vtex/cli-plugin-template", |
| 7 | + "repository": "vtex/cli-plugin-template", |
| 8 | + "license": "MIT", |
31 | 9 | "engines": { |
32 | | - "node": ">=8.0.0" |
| 10 | + "node": ">=14" |
33 | 11 | }, |
34 | 12 | "files": [ |
35 | 13 | "/build", |
36 | 14 | "/npm-shrinkwrap.json", |
37 | 15 | "/oclif.manifest.json", |
38 | 16 | "/yarn.lock" |
39 | 17 | ], |
40 | | - "homepage": "https://github.com/vtex/cli-plugin-template", |
41 | 18 | "keywords": [ |
42 | 19 | "oclif-plugin" |
43 | 20 | ], |
44 | | - "license": "MIT", |
45 | 21 | "oclif": { |
46 | 22 | "commands": "./build/commands", |
47 | 23 | "bin": "vtex", |
48 | 24 | "devPlugins": [ |
49 | 25 | "@oclif/plugin-help" |
50 | 26 | ] |
51 | 27 | }, |
52 | | - "repository": "vtex/cli-plugin-template", |
| 28 | + "husky": { |
| 29 | + "hooks": { |
| 30 | + "pre-commit": "lint-staged" |
| 31 | + } |
| 32 | + }, |
| 33 | + "lint-staged": { |
| 34 | + "*.{ts,js,tsx,jsx}": [ |
| 35 | + "eslint --fix", |
| 36 | + "prettier --write" |
| 37 | + ], |
| 38 | + "*.json": [ |
| 39 | + "prettier --write" |
| 40 | + ] |
| 41 | + }, |
53 | 42 | "scripts": { |
54 | 43 | "build-clean": "rm -rf build", |
55 | 44 | "build-incremental": "tsc --incremental", |
|
67 | 56 | "version": "oclif-dev readme && git add README.md", |
68 | 57 | "watch": "yarn build-clean && yarn nodemon" |
69 | 58 | }, |
70 | | - "husky": { |
71 | | - "hooks": { |
72 | | - "pre-commit": "lint-staged" |
73 | | - } |
| 59 | + "dependencies": { |
| 60 | + "@oclif/command": "^1", |
| 61 | + "@oclif/config": "^1", |
| 62 | + "node-localstorage": "^2.2.1", |
| 63 | + "tslib": "^1" |
74 | 64 | }, |
75 | | - "lint-staged": { |
76 | | - "*.{ts,js,tsx,jsx}": [ |
77 | | - "eslint --fix", |
78 | | - "prettier --write" |
79 | | - ], |
80 | | - "*.json": [ |
81 | | - "prettier --write" |
82 | | - ] |
| 65 | + "devDependencies": { |
| 66 | + "@oclif/dev-cli": "^1", |
| 67 | + "@oclif/plugin-help": "^3", |
| 68 | + "@types/jest": "^26.0.3", |
| 69 | + "@types/node": "^14.0.14", |
| 70 | + "@types/node-localstorage": "^1.3.0", |
| 71 | + "eslint": "^6.8.0", |
| 72 | + "eslint-config-oclif": "^3.1", |
| 73 | + "eslint-config-vtex": "^12.3.0", |
| 74 | + "globby": "^10", |
| 75 | + "husky": "^4.2.5", |
| 76 | + "jest": "^25.1.0", |
| 77 | + "lint-staged": "^10.2.11", |
| 78 | + "nodemon": "^2.0.2", |
| 79 | + "nodemon-notifier-cli": "https://github.com/Slessi/nodemon-notifier-cli.git", |
| 80 | + "prettier": "^2.0.1", |
| 81 | + "ts-jest": "^25.2.1", |
| 82 | + "ts-node": "^8", |
| 83 | + "typescript": "^3.8.2", |
| 84 | + "vtex": "^2.121.1" |
83 | 85 | } |
84 | 86 | } |
0 commit comments