-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 2.39 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vtexy",
"description": "A developer framework for a better VTEX Legacy experience.",
"version": "1.0.4",
"main": "src/index.js",
"repository": "https://github.com/ganobrega/vtexy.git",
"author": "Gabriel Nobrega <[email protected]>",
"license": "MIT",
"bin": {
"vtexy": "cli.js"
},
"scripts": {
"lint": "prettier --write **/*.js",
"dev": "nodemon --exec node cli.js --inspect --",
"docs": "docsify serve ./docs",
"docs:deploy": "cd docs && npx presite",
"commit": "npx git-cz",
"test": "mocha test/**/*js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">= 8.17.0"
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"globals": {},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {}
},
"dependencies": {
"browser-sync": "^2.26.7",
"chalk": "^3.0.0",
"conf": "^6.2.0",
"consola": "^2.11.3",
"cors": "^2.8.5",
"cosmiconfig": "^6.0.0",
"cpy": "^8.1.0",
"deepdash": "^5.0.3",
"device": "^0.3.10",
"directory-tree": "^2.2.4",
"dotenv": "^8.2.0",
"execa": "^4.0.2",
"express": "^4.17.1",
"glob": "^7.1.6",
"i18n": "^0.8.4",
"jsonc": "^2.0.0",
"lodash": "^4.17.15",
"meow": "^7.0.1",
"p-pipe": "^3.0.0",
"posthtml": "^0.12.0",
"posthtml-parser": "^0.4.2",
"prompts": "^2.3.2",
"query-string": "^6.11.1",
"ramda": "^0.27.0",
"redent": "^3.0.0",
"slugify": "^1.4.0",
"string": "^3.3.3",
"styled-components": "^5.1.1",
"terminal-link": "^2.1.1",
"transformer-proxy": "^0.3.5",
"trim-newlines": "^3.0.0",
"url-parse": "^1.4.7",
"velocity": "^0.7.2",
"velocityjs": "^2.0.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"nodemon": "^2.0.3",
"prettier": "^1.19.1"
}
}