forked from bigcommerce/stencil-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.23 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@bigcommerce/stencil-cli",
"version": "3.6.3",
"description": "CLI tool to run BigCommerce Stores locally for theme development.",
"main": "index.js",
"engines": {
"node": "^10.17 || ^12"
},
"scripts": {
"lint": "eslint . && prettier --check . --ignore-unknown",
"lint-and-fix": "eslint . --fix && prettier --write . --ignore-unknown",
"test": "jest",
"test-with-coverage": "jest --coverage --verbose"
},
"bin": {
"stencil": "./bin/stencil.js",
"stencil-bundle": "./bin/stencil-bundle.js",
"stencil-download": "./bin/stencil-download.js",
"stencil-init": "./bin/stencil-init.js",
"stencil-push": "./bin/stencil-push.js",
"stencil-pull": "./bin/stencil-pull.js",
"stencil-start": "./bin/stencil-start.js",
"stencil-release": "./bin/stencil-release.js"
},
"config": {
"stencil_version": "1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/bigcommerce/stencil-cli"
},
"author": "BigCommerce",
"license": "BSD-4-Clause",
"bugs": {
"url": "https://github.com/bigcommerce/stencil-cli/issues"
},
"homepage": "https://github.com/bigcommerce/stencil-cli",
"files": [
"/lib",
"/bin",
"/server",
"!**/*.spec.js",
"constants.js",
"package-lock.json"
],
"dependencies": {
"@bigcommerce/stencil-paper": "^3.0.0-rc.51",
"@bigcommerce/stencil-styles": "2.1.0",
"@hapi/boom": "^8.0.1",
"@hapi/glue": "^6.2.0",
"@hapi/h2o2": "^8.3.2",
"@hapi/hapi": "^18.4.1",
"@hapi/inert": "^5.2.2",
"@octokit/rest": "^18.0.6",
"ajv": "^6.12.5",
"archiver": "^5.0.2",
"async": "^3.2.0",
"axios": "^0.21.0",
"browser-sync": "^2.26.12",
"cheerio": "^0.22.0",
"colors": "^1.4.0",
"commander": "^6.1.0",
"confidence": "^4.0.2",
"form-data": "^3.0.0",
"front-matter": "^4.0.2",
"glob": "^7.1.6",
"graceful-fs": "^4.2.4",
"image-size": "^0.9.1",
"inquirer": "^8.1.5",
"lodash": "^4.17.20",
"memory-cache": "^0.2.0",
"npm-which": "^3.0.1",
"object-to-spawn-args": "^2.0.0",
"parse-json": "^5.2.0",
"progress": "^2.0.3",
"recursive-readdir": "^2.2.2",
"semver": "^7.3.2",
"simple-git": "^2.20.1",
"tarjan-graph": "^2.0.0",
"tmp-promise": "^3.0.2",
"upath": "^1.2.0",
"uuid4": "^2.0.2",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"axios-mock-adapter": "^1.19.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"gulp": "^4.0.2",
"gulp-bump": "^3.2.0",
"gulp-exec": "^5.0.0",
"gulp-git-streamed": "^2.10.1",
"gulp-if": "^3.0.0",
"gulp-prompt": "^1.2.0",
"gulp-util": "^3.0.8",
"husky": "^4.3.0",
"jest": "^26.4.2",
"lint-staged": "^10.4.0",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "npm run lint-and-fix"
}
}