forked from umijs/qiankun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.38 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
{
"name": "qiankun",
"version": "1.3.5",
"description": "An completed implementation of Micro Frontends",
"keywords": [
"micro frontend",
"microfrontend",
"micro frontends"
],
"main": "./lib/index.js",
"module": "./es/index.js",
"types": "./es/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "concurrently \"yarn start:main\" \"yarn start:react16\" \"yarn start:react15\" \"yarn start:vue\"",
"install:examples": "yarn build && cd examples/main && yarn && cd ../react16 && yarn && cd ../react15 && yarn && cd ../vue && yarn",
"start:main": "cd examples/main && yarn start",
"start:react16": "cd examples/react16 && yarn start",
"start:react15": "cd examples/react15 && yarn start",
"start:vue": "cd examples/vue && yarn start",
"start:cra": "cd examples/cra && npm start",
"build": "father-build",
"release": "np --no-cleanup --yolo --no-publish",
"prepublishOnly": "yarn lint && yarn build",
"lint": "yarn lint:js && yarn lint:prettier",
"lint:js": "eslint --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src",
"lint:fix": "yarn lint:js -- --fix",
"lint:prettier": "check-prettier lint",
"prettier": "prettier -c --write **/*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuitos/qiankun.git"
},
"files": [
"dist",
"es",
"lib"
],
"author": "Kuitos",
"license": "MIT",
"bugs": {
"url": "https://github.com/kuitos/qiankun/issues"
},
"homepage": "https://github.com/kuitos/qiankun#readme",
"dependencies": {
"@babel/runtime": "^7.5.5",
"import-html-entry": "^1.3.4",
"lodash": "^4.17.11",
"single-spa": "^4.3.4",
"tslib": "^1.10.0"
},
"devDependencies": {
"@types/lodash": "^4.14.129",
"@types/vfile-message": "1.x",
"@umijs/fabric": "^1.1.10",
"babel-plugin-import": "^1.12.1",
"check-prettier": "^1.0.3",
"concurrently": "^4.1.2",
"father-build": "^1.7.0",
"husky": "^2.3.0",
"lint-staged": "^9.4.2",
"np": "^5.0.3",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,json,css,md}": [
"yarn prettier",
"git add"
],
"**/*.{js,ts}": [
"yarn lint:fix",
"git add"
]
}
}