-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.89 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
{
"name": "@medusa/cli",
"version": "0.0.0-real-version-will-be-set-at-the-ci",
"description": "A CLI interface for bootstrapping and managing MFEs",
"main": "bin/medusa.js",
"repository": "git@github.com:medusa-frontends/medusa-cli.git",
"author": "Evgeny Zakharov <risenforces@gmail.com>",
"license": "MIT",
"engines": {
"node": ">= 14.13.1",
"npm": ">= 5.5.1"
},
"bin": {
"medusa": "bin/medusa.js"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"dev": "rollup -c rollup.config.js -w",
"lint": "eslint src/**/*.{ts,tsx} --fix"
},
"devDependencies": {
"@eslint-kit/eslint-config-base": "^5.0.2",
"@eslint-kit/eslint-config-node": "^2.0.0",
"@eslint-kit/eslint-config-patch": "^1.0.0",
"@eslint-kit/eslint-config-prettier": "^4.0.0",
"@eslint-kit/eslint-config-typescript": "^5.1.0",
"@types/lodash.debounce": "^4.0.6",
"@types/merge-deep": "^3.0.0",
"@types/object-hash": "^2.2.1",
"@types/react": "^17.0.34",
"@typescript-eslint/parser": "4.15.0",
"esbuild": "^0.13.9",
"eslint": "7.10.0",
"eslint-import-resolver-typescript": "2.3.0",
"prettier": "2.2.1",
"rollup-plugin-esbuild": "^4.6.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.4.4"
},
"dependencies": {
"@medusa/webpack-plugin": "^1.0.0",
"change-case": "^4.1.2",
"commander": "^8.3.0",
"effector": "^22.1.2",
"effector-react": "^22.0.4",
"find-free-ports": "^3.0.0",
"ink": "^3.2.0",
"ink-progress-bar": "^3.0.0",
"ink-spinner": "^4.0.3",
"ink-table": "^3.0.0",
"ink-text-input": "^4.0.2",
"lodash.debounce": "^4.0.8",
"merge-deep": "^3.0.3",
"object-hash": "^2.2.0",
"patronum": "^1.1.0",
"react": "^17.0.2",
"rollup": "^2.59.0",
"rollup-plugin-dts": "^4.0.0",
"webpack": "^5.61.0",
"zx": "^4.2.0"
},
"publishConfig": {
"access": "public"
}
}