-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.44 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
{
"name": "tgucsdn-hel",
"appGroupName": "tgucsdn-hel",
"version": "0.0.5",
"main": "hel_proxy/entry.js",
"module": "hel_proxy_es/entry.js",
"types": "src/entrance/libTypes.ts",
"files": [
"hel_proxy",
"hel_proxy_es",
"scripts",
"README.md",
"src"
],
"scripts": {
"start": "cross-env PORT=7001 vue-cli-service serve",
"start:vite": "node ./bin/vite",
"build": "npm run check_name && npm run build_dist && npm run build_meta && npm run build_proxy",
"build_dist": "vue-cli-service build",
"check_name": "node ./scripts/check.js",
"build_proxy": "npm run build_proxy_umd && npm run build_proxy_es && cp ./hel_proxy/entry.js ./hel_dist",
"build_proxy_umd": "rollup -c",
"build_proxy_es": "cross-env BUILD_ENV=es rollup -c",
"build_cust": "npm run set_home_page \"npm run build && npm run build_meta\"",
"set_home_page": "cross-env-shell HEL_APP_HOME_PAGE=http://127.0.0.1:9001",
"build_meta": "node scripts/meta.js",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"prepublishOnly": "node ./scripts/prepublishOnly.js"
},
"dependencies": {
"core-js": "^3.8.3",
"hel-iso": "^4.3.2",
"hel-lib-proxy": "^4.7.0",
"hel-tpl-remote-vue3-comps-ts": "file:",
"tgucsdn-hel": "file:",
"vue": "^3.2.13"
},
"peerDependencies": {
"core-js": "^3.8.3",
"hel-iso": "^4.3.2",
"hel-lib-proxy": "^4.7.0",
"vue": "^3.2.13"
},
"devDependencies": {
"@rollup/plugin-typescript": "^9.0.1",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-typescript": "~5.0.0",
"@vue/cli-plugin-unit-jest": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/eslint-config-typescript": "^9.1.0",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"babel-jest": "^27.0.6",
"chalk": "4.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-vue": "^8.0.3",
"hel-dev-utils": "^4.3.11",
"jest": "^27.0.5",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.4",
"typescript": "~4.5.5",
"vue-cli-plugin-vite": "~1.5.0"
}
}