-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
129 lines (129 loc) · 4.23 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
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "fepfan",
"version": "1.1.0",
"description": "是否有过当你看到比较优秀的前端资源时,由于没有时间来的及收录,过段时间等需要的时,却翻来覆去不知道去哪了~~ 前端导航站,收集前端业内优秀技术博客、框架,方便快速寻找优秀资源,~~宝宝再也不用担心查找资源了~~",
"main": "index.js",
"scripts": {
"commitmsg": "validate-commit-msg",
"prepush": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"app": "npm run build:dll && cross-env webpack-dev-server --colors --progress",
"dev": "npm run build:dll && node app",
"prod": "cross-env NODE_ENV=production && node app",
"rm": "rm -rf ./dist",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --colors",
"build:dll": "cross-env NODE_ENV=production webpack --config webpack.dll.config.js --colors",
"build:prod": "rm -rf ./dist && cross-env NODE_ENV=production webpack --config webpack.prod.config.js --colors",
"analyzer": "webpack --profile --json > stats.json",
"publish": "node publish"
},
"author": "@pfan",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.5.0",
"axios": "^0.16.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-native-modules": "^6.9.4",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"compression-webpack-plugin": "^1.0.0",
"connect-history-api-fallback": "^1.3.0",
"conventional-changelog-cli": "^2.0.12",
"cross-env": "^4.0.0",
"css-loader": "0.28.9",
"eslint": "^5.15.3",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "1.9.0",
"eslint-plugin-html": "^2.0.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"glob": "^7.1.1",
"happypack": "^3.1.0",
"html-loader": "^0.4.5",
"html-webpack-plugin": "^2.29.0",
"http-proxy-middleware": "^0.17.4",
"husky": "^0.13.4",
"imagemin-webpack-plugin": "^1.4.4",
"koa-static-cache": "^5.1.1",
"koa-webpack-dev-middleware": "^2.0.0",
"koa-webpack-hot-middleware": "^1.0.3",
"koa-webpack-middleware": "^1.0.5",
"leancloud-storage": "^2.3.0",
"mockjs": "^1.0.1-beta3",
"node-sass": "^4.5.2",
"postcss-import": "^9.1.0",
"postcss-loader": "^2.0.5",
"sass-loader": "^6.0.3",
"scss-loader": "0.0.1",
"style-loader": "^0.17.0",
"sw-precache-webpack-plugin": "^0.11.4",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"validate-commit-msg": "^2.14.0",
"vue-axios": "^2.0.2",
"vue-html": "0.3.0",
"vue-loader": "11.3.4",
"vue-resource": "^1.3.1",
"vue-router": "^2.5.3",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.3.0",
"webpack": "3.3.0",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-dev-middleware": "^1.12.0",
"webpack-dev-server": "2.11.5",
"webpack-hot-middleware": "^2.18.0",
"webpack-obfuscator": "^0.11.0",
"webpack-uglify-parallel": "^0.1.3"
},
"dependencies": {
"koa": "^2.3.0",
"koa-static": "^5.0.0",
"vue": "^2.3.0"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": {
"required": false,
"allowed": [
"*"
],
"validate": false,
"multiple": false
},
"warnOnFail": false,
"maxSubjectLength": 1000,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": "",
"autoFix": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pfan123/front-end-navigator.git"
},
"bugs": {
"url": "https://github.com/pfan123/front-end-navigator/issues"
},
"homepage": "https://github.com/pfan123/front-end-navigator#readme"
}