-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "create-mf-app",
"version": "2.0.2",
"description": "Create Module Federation apps",
"main": "src/index.js",
"bin": "bin/create-mf-app.js",
"scripts": {
"start": "tsc && node bin/create-mf-app.js",
"build": "tsc",
"lint": "eslint --fix",
"prepare": "husky install",
"test": "vitest run",
"test:watch": "vitest watch"
},
"author": "Jack Herrington",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^13.1.0",
"ejs": "^3.1.10",
"glob": "^11.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/glob": "^8.1.0",
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^7.0.4",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^4.5.3",
"typescript-eslint": "^8.22.0",
"vitest": "^1.4.0"
},
"packageManager": "[email protected]"
}