-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
75 lines (75 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
{
"name": "front-end-navigation",
"version": "1.5.2",
"description": "Chrome extensions for front-end development.",
"main": "index.js",
"scripts": {
"lint": "eslint --ext js --ext vue ./src ./config --fix && stylelint \"./src/**/*.vue\" --fix",
"dev": "cross-env NODE_ENV=development webpack serve",
"analysis": "cross-env NODE_ENV=analysis webpack --progress",
"build": "rimraf ./dist && cross-env NODE_ENV=production webpack --progress",
"build:chrome": "rimraf ./chrome-extends/* && cp ./google-extends-manifest.json ./chrome-extends/manifest.json && cross-env NODE_ENV=chrome webpack --progress",
"test": "cross-env NODE_ENV=chrome BABEL_ENV=test karma start test/unit/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mengsixing/front-end-navigation.git"
},
"author": "mengsixing",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengsixing/front-end-navigation/issues"
},
"homepage": "https://github.com/mengsixing/front-end-navigation#readme",
"dependencies": {
"autoprefixer": "^9.0.0",
"cssnano": "^4.1.10",
"element-ui": "^2.14.1",
"html-webpack-plugin": "^4.5.1",
"mini-css-extract-plugin": "^1.3.3",
"rimraf": "^3.0.2",
"stylelint-webpack-plugin": "^2.1.1",
"vue": "^2.6.12",
"vue-loader": "15.9.6",
"webpack": "^5.0.0-rc.6",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-merge": "^5.7.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@vue/test-utils": "^1.1.2",
"babel-loader": "^8.2.2",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.3",
"css-loader": "^5.0.1",
"ejs": "^3.1.5",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.4.1",
"file-loader": "^6.2.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^5.0.0-alpha.5",
"mocha": "^8.2.1",
"node-sass": "^5.0.0",
"postcss-loader": "^4.1.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"url-loader": "^4.1.1",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.12",
"webpack-cli": "^4.3.1",
"webpack-dev-server": "^3.11.1"
}
}