-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.55 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
{
"name": "vue-chrome-extension",
"version": "1.0.3",
"description": "CommerceIQ extension for providing contextual SKU information on Amazon page",
"main": "index.js",
"repository": "https://github.com/AnandShiva/chrome_extension_boilerplate.git",
"author": "Anand <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build:crx": "yarn lint && node build_config/build.js",
"build:dev": "sudo webpack --mode development",
"build:dev:watch": "sudo webpack --mode development --watch --env.hot",
"build:prod": "yarn lint && webpack --mode production",
"build": "sudo yarn build:prod && sudo yarn build:crx",
"lint": "eslint --ext .js,.vue src",
"test": "yarn lint && jest --watch"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^5.1.1",
"crx": "^5.0.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-vue": "^6.2.1",
"file-loader": "^5.0.2",
"fs": "^0.0.1-security",
"jest": "^25.1.0",
"jest-mock-axios": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.4"
},
"dependencies": {
"axios": "^0.19.2",
"vue": "^2.6.11"
}
}