-
Notifications
You must be signed in to change notification settings - Fork 141
/
package.json
122 lines (122 loc) · 3.64 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
119
120
121
122
{
"name": "@bigcommerce/stencil-cli",
"version": "8.3.0",
"type": "module",
"description": "CLI tool to run BigCommerce Stores locally for theme development.",
"main": "index.js",
"engines": {
"node": ">=18",
"npm": ">=8.0.0"
},
"scripts": {
"lint": "eslint . && prettier --check . --ignore-unknown",
"lint-and-fix": "eslint . --fix && prettier --write . --ignore-unknown",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test-with-coverage": "npm run test --coverage --verbose",
"release": "semantic-release"
},
"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",
"stencil-debug": "./bin/stencil-debug.js",
"stencil-scss-autofix": "./bin/stencil-scss-autofix.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": "5.0.0",
"@bigcommerce/stencil-styles": "^6.1.1",
"@hapi/boom": "^10.0.0",
"@hapi/glue": "^9.0.1",
"@hapi/h2o2": "^9.1.0",
"@hapi/hapi": "^20.2.2",
"@hapi/inert": "^6.0.5",
"@jest/globals": "^29.7.0",
"@octokit/rest": "^21.0.2",
"ajv": "^6.12.5",
"archiver": "^5.0.2",
"async": "^3.2.3",
"axios": "^0.28.0",
"browser-sync": "^2.27.9",
"cheerio": "^1.0.0",
"colors": "1.4.0",
"commander": "^6.1.0",
"confidence": "^5.0.1",
"form-data": "^3.0.0",
"front-matter": "^4.0.2",
"glob": "^7.1.6",
"graceful-fs": "^4.2.4",
"husky": "^8.0.1",
"image-size": "^0.9.1",
"inquirer": "^8.1.5",
"js-yaml": "^4.1.0",
"lodash": "^4.17.20",
"lodash-es": "^4.17.21",
"memory-cache": "^0.2.0",
"npm-which": "^3.0.1",
"nypm": "^0.3.8",
"object-to-spawn-args": "^2.0.0",
"ora": "^8.0.1",
"parse-json": "^5.2.0",
"postcss": "^8.4.21",
"postcss-safe-parser": "^6.0.0",
"postcss-scss": "^4.0.6",
"progress": "^2.0.3",
"recursive-readdir": "^2.2.2",
"semver": "^7.3.2",
"simple-git": "^3.26.0",
"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": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"axios-mock-adapter": "^1.21.2",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.7.0",
"prettier": "2.1.2",
"semantic-release": "^24.1.1",
"semantic-release-github-pullrequest": "^1.3.0"
}
}