-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.47 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
{
"name": "history-navigation-vue",
"version": "1.5.0",
"description": "Native-like Navigation for Web apps.",
"keywords": [
"history",
"navigation",
"vue",
"controller",
"html5",
"multi-page",
"architecture",
"single-page",
"native-like",
"routing",
"router",
"hybrid",
"web app"
],
"main": "dist/history-navigation-vue.js",
"license": "MIT",
"author": "hezedu",
"repository": {
"type": "git",
"url": "https://github.com/hezedu/history-navigation-vue.git"
},
"scripts": {
"start": "webpack-dev-server --progress --hot --color",
"build": "npm run build_dev && npm run _build_pro && node script/after_webpack_build.js",
"_build_pro": "webpack --node-env=production --color --progress --config webpack.build.config.js",
"build_dev": "webpack --node-env=development --color --progress --config webpack.build.config.js",
"build_ex": "webpack --node-env=production --color --progress --config webpack.config.js",
"ssr_build": "webpack --color --node-env=production --progress --config ./ssr/webpack.config.js",
"preview_docs": "node server/preview_docs.js",
"preview_ex": "node server/preview_ex.js",
"test": "cd test && npm run test_unit",
"test_unit": "mocha test/unit",
"test_e2e": "mocha test/e2e --timeout=5000"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-decorators": "^7.16.4",
"@babel/plugin-proposal-do-expressions": "^7.16.0",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-proposal-export-namespace-from": "^7.16.0",
"@babel/plugin-proposal-function-bind": "^7.16.0",
"@babel/plugin-proposal-function-sent": "^7.16.0",
"@babel/plugin-proposal-json-strings": "^7.16.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
"@babel/plugin-proposal-numeric-separator": "^7.16.0",
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
"@babel/plugin-proposal-pipeline-operator": "^7.16.0",
"@babel/plugin-proposal-throw-expressions": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/runtime": "^7.16.3",
"acorn": "^8.6.0",
"autoprefixer": "^9.8.8",
"babel-loader": "^8.2.3",
"babel-plugin-transform-remove-console": "^6.9.4",
"chromedriver": "^96.0.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"eslint": "^8.3.0",
"eslint-plugin-vue": "^8.1.1",
"eslint-webpack-plugin": "^3.1.1",
"express": "^4.17.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"mocha": "^9.1.3",
"postcss": "^8.4.4",
"postcss-loader": "^6.2.1",
"selenium-webdriver": "^4.1.0",
"style-loader": "^3.3.1",
"terser": "^5.10.0",
"terser-webpack-plugin": "^5.2.5",
"vue": "2.6.11",
"vue-loader": "^15.9.8",
"vue-server-renderer": "2.6.11",
"vue-template-compiler": "2.6.11",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}