-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 1.19 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
{
"name": "my-ext",
"version": "1.0.0",
"description": "A Vue.js web extension",
"author": "Silou",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js --progress --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "npm run build:dev -- --watch"
},
"dependencies": {
"axios": "^0.16.2",
"bootstrap-vue": "^2.0.0-rc.2",
"jquery": "^3.3.1",
"vue": "^2.5.13",
"vue-axios": "^2.1.1",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webpack": "^3.11.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.39",
"@babel/preset-env": "^7.0.0-beta.39",
"babel-loader": "8.0.0-beta.0",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.7",
"vue-loader": "^14.1.1",
"vue-template-compiler": "^2.5.13",
"webpack-shell-plugin": "^0.5.0",
"zip-folder": "^1.0.0"
}
}