-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.47 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
{
"name": "@spree/cli",
"version": "1.2.0",
"description": "Spree's CLI that allows for setting up the store with selected backend template and front-end integration",
"bin": "./bin/run",
"homepage": "https://github.com/upsidelab/spree_cli_internal",
"license": "MIT",
"main": "dist/index.js",
"repository": "upsidelab/spree_cli_internal",
"files": [
"/bin",
"/dist",
"/locales",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^1.7.0",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-plugins": "^2.1.0",
"@oclif/plugin-update": "^3.0.0",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"@vue-storefront/theme-utilities": "^0.1.7",
"execa": "^5.1.1",
"i18next": "^21.6.16",
"i18next-fs-backend": "^1.1.4",
"inquirer": "^8.2.4",
"isomorphic-git": "^1.17.1",
"node-fetch": "^2.6.7",
"os-locale": "^5.0.0",
"picocolors": "^1.0.0",
"reasonable-filename": "^1.2.0",
"rimraf": "^3.0.2",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.18.6",
"@types/i18next-fs-backend": "^1.1.2",
"@types/inquirer": "^8.2.1",
"@types/jest": "^28.1.4",
"@types/mock-fs": "^4.13.1",
"@types/node": "^12.20.50",
"@types/node-fetch": "^2.6.1",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^7.32.0",
"globby": "^11.1.0",
"jest": "^28.1.2",
"mock-fs": "^5.1.2",
"mock-stdin": "^1.0.0",
"oclif": "^3.0.1",
"ts-jest": "^28.0.5",
"ts-node": "^10.7.0",
"typescript": "^4.9.3"
},
"oclif": {
"bin": "@spree/cli",
"dirname": "@spree/cli",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-update",
"@oclif/plugin-plugins",
"@oclif/plugin-warn-if-update-available"
],
"commands": "./dist/commands",
"topicSeparator": " "
},
"scripts": {
"build": "rimraf dist && tsc --project ./tsconfig.build.json",
"lint": "eslint . --ext .ts --config .eslintrc.js",
"postpack": "rimraf oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest",
"docs": "oclif readme",
"test": "jest --rootDir .",
"version": "oclif readme && git add README.md"
},
"engines": {
"node": ">=14 <=16"
},
"bugs": "https://github.com/upsidelab/spree_cli_internal/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}