-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
115 lines (115 loc) · 3.54 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "hel-tpl-remote-lib",
"appGroupName": "hel-tpl-remote-lib",
"main": "hel_proxy/entry.js",
"module": "hel_proxy_es/entry.js",
"unpkg": "hel_dist/index.html",
"types": "lib/entrance/libTypes.ts",
"version": "2.6.0",
"dependencies": {
"@types/lodash": "^4.14.182",
"hel-iso": "^4.3.2",
"hel-lib-proxy": "^4.7.0",
"hel-micro": "^4.7.1",
"lodash": "^4.17.21"
},
"peerDependencies": {
"hel-iso": "^4.3.2",
"hel-lib-proxy": "^4.7.0",
"hel-micro": "^4.7.1"
},
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"prepublishOnly": "node ./scripts/prepublishOnly.js",
"check": "node ./scripts/check",
"start": "cross-env PORT=3001 npm run app",
"app": "node scripts/start.js",
"build_stub": "npm run build && npm run build_bundle",
"build": "npm run check_name && npm run build_dist && npm run build_meta && npm run build_proxy",
"check_name": "node scripts/check.js",
"build_dist": "node scripts/build.js",
"build_meta": "node scripts/meta.js",
"build_proxy": "npm run build_proxy_umd && npm run build_proxy_es",
"build_proxy_umd": "tsc & node ./scripts/replaceToRelativePath.js & rollup -c",
"build_proxy_es": "tsc & node ./scripts/replaceToRelativePath.js & cross-env BUILD_ENV=es rollup -c",
"build_bundle": "tsc & cross-env BUNDLE=true node ./scripts/replaceToRelativePath.js & cross-env BUNDLE=true node scripts/build.js",
"build_cust": "npm run set_home_page \"npm run build\"",
"set_home_page": "cross-env-shell HEL_APP_HOME_PAGE=http://127.0.0.1:9001",
"lint": "eslint ./src --ext ts,tsx",
"lintfix": "eslint ./src --ext ts,tsx --fix",
"test": "jest"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.9.0",
"@testing-library/dom": "^8.17.1",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"babel-eslint": "10.1.0",
"babel-jest": "^24.9.0",
"babel-loader": "8.1.0",
"babel-plugin-named-asset-import": "^0.3.6",
"babel-preset-react-app": "^9.1.2",
"case-sensitive-paths-webpack-plugin": "2.3.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-loader": "3.0.3",
"eslint-plugin-import": "2.20.1",
"file-loader": "4.3.0",
"fs-extra": "^10.1.0",
"hel-dev-utils": "^4.3.11",
"html-webpack-plugin": "4.0.0-beta.11",
"jest": "24.9.0",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"jsdom": "^20.0.0",
"lint-staged": "^10.5.3",
"pnp-webpack-plugin": "1.6.4",
"react-dev-utils": "^11.0.4",
"replace-absolute-path": "^1.0.0",
"resolve": "^1.22.1",
"resolve-url-loader": "^3.1.2",
"rollup": "^2.56.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"terser-webpack-plugin": "2.3.5",
"ts-pnp": "1.1.6",
"tslib": "^2.4.0",
"typescript": "4.8.4",
"url-loader": "2.3.0",
"webpack": "4.42.0",
"webpack-dev-server": "^3.11.2",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"files": [
"hel_proxy",
"hel_proxy_es",
"hel_bundle",
"hel_dist",
"lib",
"scripts"
]
}