forked from dwqs/chrome-extension-for-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.33 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
{
"name": "chrome-extension-for-wiki",
"version": "1.0.0",
"description": "Add awesome article link to your wiki repo on github.com",
"author": "https://github.com/dwqs",
"license": "MIT",
"scripts": {
"prepush": "npm run ilint -q",
"dll": "./node_modules/.bin/webpack --config webpack.dll.config.js",
"dev": "cp manifest.json ./dist && ./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/webpack --config ./build/webpack.dev.config.js -w --display-error-details --progress --hide-modules",
"build": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --config ./build/webpack.prod.config.js --progress --hide-modules",
"postbuild": "cp manifest.json ./dist",
"ilint": "./node_modules/.bin/eslint src/**/*.js src/**/*.vue",
"fix": "./node_modules/.bin/eslint --fix src/**/*.js src/**/*.vue"
},
"dependencies": {
"axios": "^0.16.2",
"element-ui": "^1.3.7",
"vue": "^2.3.4"
},
"devDependencies": {
"autoprefixer": "^7.1.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-component": "^0.10.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.23.0",
"clean-webpack-plugin": "^0.1.16",
"compression-webpack-plugin": "^0.4.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.4",
"cssnano": "^3.10.0",
"eslint": "^4.1.1",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-vue": "^2.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"gulp-util": "^3.0.8",
"happypack": "^4.0.0-beta.1",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"less": "^2.7.2",
"less-loader": "^4.0.4",
"open-browser-webpack-plugin": "^0.0.5",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"ora": "^1.3.0",
"postcss-loader": "^2.0.6",
"precss": "^2.0.0",
"url-loader": "^0.5.9",
"vue-loader": "^13.0.0",
"vue-style-loader": "^1.0.0",
"vue-template-compiler": "^2.3.4",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0",
"webpack-md5-hash": "^0.0.5",
"webpack-parallel-uglify-plugin": "^0.4.2"
},
"engines": {
"node": ">= 5.0.0",
"npm": ">= 3.0.0"
}
}