-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "yobi-chrome",
"version": "0.1.0",
"description": "Yobi chrome extension",
"main": "index.js",
"scripts": {
"local": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --env=local --config=node_modules/laravel-mix/setup/webpack.config.js",
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
"dev": "npm run local",
"prod": "npm run production",
"watch": "npm run local -- --watch"
},
"repository": {
"type": "git",
"url": "https://git.yib.io/yobi/integrations/yobi-chrome.git"
},
"keywords": [
"chrome",
"extension",
"yobi"
],
"author": "Ilyes chouia",
"license": "PRIVATE",
"dependencies": {
"axios": "^0.26.1",
"lodash": "^4.17.21",
"vue-router": "^4.0.15"
},
"devDependencies": {
"@types/chrome": "^0.0.180",
"@types/webpack-env": "^1.16.3",
"@vue/compiler-sfc": "^3.2.32",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.43",
"types": "^0.1.1",
"vue": "^3.2.32",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.14"
}
}