-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
116 lines (116 loc) · 3.67 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
116
{
"name": "@hqjs/hq",
"version": "0.0.31",
"description": "Universal static web server for frontend development",
"main": "server.mjs",
"module": "server.mjs",
"scripts": {
"dev": "nodemon --experimental-json-modules index.mjs",
"start": "node --experimental-json-modules --no-warnings ./index.mjs"
},
"bin": {
"hq": "./run.js"
},
"repository": {
"type": "git",
"url": "https://github.com/hqjs/hq.git"
},
"keywords": [
"static server",
"frontend",
"development",
"babel",
"webpack",
"react",
"angular",
"vue",
"polymer",
"hq"
],
"homepage": "https://hqjs.org",
"author": "hqjs <hqjs.org@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=12.10.0",
"npm": ">=6.10.3"
},
"dependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-flow": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@hqjs/babel-plugin-add-decorators-metadata": "~0.0.2",
"@hqjs/babel-plugin-add-type-metadata": "~0.0.4",
"@hqjs/babel-plugin-expose-global-to-window": "~0.0.2",
"@hqjs/babel-plugin-patch-angular-fesm5-compiler": "~0.0.2",
"@hqjs/babel-plugin-support-nodejs-globals": "~0.0.2",
"@hqjs/babel-plugin-transform-css-imports": "~0.0.3",
"@hqjs/babel-plugin-transform-define": "~0.0.1",
"@hqjs/babel-plugin-transform-export-all": "~0.0.3",
"@hqjs/babel-plugin-transform-json-imports": "~0.0.6",
"@hqjs/babel-plugin-transform-mixed-imports": "~0.0.1",
"@hqjs/babel-plugin-transform-modules": "~0.0.9",
"@hqjs/babel-plugin-transform-name-imports": "~0.0.6",
"@hqjs/babel-plugin-transform-named-export-to-destructure": "~0.0.4",
"@hqjs/babel-plugin-transform-named-import-to-destructure": "~0.0.9",
"@hqjs/babel-plugin-transform-namespace-imports": "~0.0.4",
"@hqjs/babel-plugin-transform-parameter-decorators": "~0.0.2",
"@hqjs/babel-plugin-transform-paths": "~0.0.7",
"@hqjs/babel-plugin-transform-typescript": "~0.0.12",
"@hqjs/stream-buffer-cache": "^1.0.1",
"@koa/cors": "^3.1.0",
"@vue/component-compiler": "^4.2.3",
"acorn": "^8.0.4",
"babel-plugin-const-enum": "^1.0.1",
"babel-plugin-minify-dead-code-elimination": "~0.5.1",
"babel-plugin-transform-assets-import-to-string": "^1.2.0",
"babel-preset-minify": "~0.5.1",
"browserslist": "^4.16.0",
"buffer": "^6.0.3",
"chokidar": "^3.4.3",
"coffeescript": "^2.5.1",
"compressible": "^2.0.18",
"core-js": "^3.8.1",
"cssnano": "^4.1.10",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"htmlnano": "~0.2.8",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.1",
"imagemin-svgo": "^8.0.0",
"koa": "^2.13.0",
"koa-compose": "^4.1.0",
"less": "^4.0.0",
"mime-types": "^2.1.27",
"node-fetch": "^2.6.1",
"node-sass": "^5.0.0",
"postcss": "^8.2.1",
"postcss-less": "^4.0.0",
"postcss-modules": "^4.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-sass": "^0.4.4",
"postcss-scss": "^3.0.4",
"posthtml": "~0.15.1",
"process": "~0.11.10",
"regenerator-runtime": "~0.13.7",
"resolve": "^1.19.0",
"rollup": "^2.35.1",
"vue-template-compiler": "^2.6.12",
"woothee": "^1.11.1",
"ws": "^7.4.1"
},
"devDependencies": {
"eslint": "^7.16.0",
"nodemon": "^2.0.6"
},
"publishConfig": {
"access": "public"
}
}