-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
{
"name": "nerd",
"version": "0.0.3",
"description": "a simple frontend project tempplate\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[C\u001b[C\u001b[-\u001b[C\u001b[C\u001b[C\u001b[C\u001b[C\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D\u001b[D-initial-\u001b[template",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "node build/dev-server.js",
"build": "node build/build-prod.js",
"eslint": "./node_modules/.bin/eslint",
"lint-fix": "eslint --quiet --fix",
"pretty": "node pretty.js"
},
"keywords": [
"webpack",
"node"
],
"author": "mrzhuzhe",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"body-parser": "^1.18.3",
"chalk": "^2.4.1",
"commander": "^2.15.1",
"connect-history-api-fallback": "^1.5.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-vue": "^4.5.0",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.3",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^6.0.1",
"glob": "^7.1.2",
"html-webpack-harddisk-plugin": "^0.2.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.18.0",
"jsonschema": "^1.2.4",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.0",
"mockjs": "^1.0.1-beta3",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"ora": "^2.1.0",
"progress-bar-webpack-plugin": "^1.12.1",
"raw-loader": "^0.5.1",
"semver": "^5.5.0",
"staged-git-files": "^1.1.1",
"svg-sprite-loader": "^4.1.6",
"uglifyjs-webpack-plugin": "^2.1.3",
"url-loader": "^2.0.1",
"vue-loader": "^15.2.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.8.3",
"webpack-bundle-analyzer": ">=3.3.2",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserlist": [
"> 1%",
"last 2 versions",
"ie > 8"
],
"lint-staged": {
"packages/**/*.{js,vue}": "eslint",
"test/**/*": "eslint",
"src/**/*": "eslint",
"build/**/*": "eslint"
},
"dependencies": {
"axios": "^0.21.2",
"vue": "^2.5.16",
"vue-router": "^3.0.1"
}
}