-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"name": "smallfish-mf",
"version": "0.0.1",
"description": "",
"main": "./lib/index.js",
"files": [
"src",
"lib"
],
"scripts": {
"start": "npm run start:main & npm run start:react & npm run start:vue & npm run start:smallfish",
"install:example": "cd example/main && npm i && cd ../vue && npm i && cd ../react && npm i && cd ../smallfish && npm i",
"start:react": "cd example/react && npm run dev",
"start:vue": "cd example/vue && npm run dev",
"start:main": "cd example/main && npm run dev",
"start:smallfish": "cd example/smallfish && npm run dev",
"lint": "eslint 'src/**/*.ts' --fix",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-antife": "^2.0.0",
"eslint-plugin-html": "^5.0.5",
"typescript": "^3.4.5"
},
"repository": {
"type": "git",
"url": "[email protected]:smallfishjs/micro-fe.git"
},
"dependencies": {
"single-spa": "^4.3.4"
}
}