-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@tiagonapoli/vtex-scripts",
"version": "0.0.8",
"author": "Tiago Nápoli <[email protected]>",
"license": "ISC",
"files": [
"/bin",
"/build",
"/oclif.manifest.json"
],
"bin": {
"vtex-dev": "./bin/run"
},
"scripts": {
"exe": "node scripts/make-executable.js",
"docs": "yarn oclif-dev readme",
"watch": "bash ./scripts/symlink.sh && yarn build-clean && yarn nodemon",
"format": "prettier --config ./.prettierrc --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint ./src --cache --ext .ts --config .eslintrc",
"format-lint": "yarn format && yarn lint",
"build-clean": "rm -rf build && rm -rf oclif.manifest.json",
"build-incremental": "tsc --incremental && yarn oclif-dev manifest",
"build": "yarn build-clean && tsc && yarn oclif-dev manifest",
"test": "jest --passWithNoTests",
"prepublishOnly": "bash ./scripts/publishLock.sh",
"ci:test": "yarn test --ci",
"ci:prettier-check": "prettier --check --config ./.prettierrc \"src/**/*.ts\" \"src/**/*.js\""
},
"dependencies": {
"@oclif/command": "^1.0.0",
"@oclif/config": "^1.0.0",
"@vtex/api": "^3.47.1",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"findhelp": "^1.1.0",
"fs-extra": "^8.1.0",
"graphql": "14",
"tar": "^4.4.10",
"tslib": "^1.0.0"
},
"devDependencies": {
"@tiagonapoli/oclif-dev-cli": "^0.0.4",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/tar": "^4.0.3",
"eslint": "^6.8.0",
"eslint-config-vtex": "^12.2.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-jest": "^25.2.1",
"ts-node": "^8.1.0",
"typescript": "^3.8.3"
},
"oclif": {
"commands": "./build/commands",
"bin": "vtex-dev",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"app": {
"description": "App related commands"
}
}
}
}