-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
75 lines (75 loc) · 2.59 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": "xv_chrome",
"version": "6.0.1",
"description": "ExpressVPN browser extension",
"author": "ExpressVPN",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/expressvpn/expressvpn_browser_extension.git"
},
"private": true,
"scripts": {
"build:prod": "cross-env NODE_ENV=production webpack",
"build": "cross-env NODE_ENV=development webpack ",
"start": "cross-env HMR=false npm run build -- --watch",
"screenshots": "node test/screenshots/index.js",
"test": "jest",
"lint": "prettier . -w && eslint . --fix"
},
"dependencies": {
"@rudderstack/analytics-js-service-worker": "^3.0.4",
"prettier": "^3.2.5",
"ua-parser-js": "^1.0.37",
"uuid": "^9.0.1",
"vue": "^2.7.16",
"vue-inline-svg": "^2.1.3",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.23.9",
"@babel/runtime-corejs3": "^7.23.9",
"@types/chrome": "0.0.260",
"@types/jest": "^29.5.12",
"@vue/test-utils": "^1.1.4",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"chromedriver": "^121.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.35.1",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-vue": "^9.21.1",
"jest": "^27.5.1",
"jest-chrome": "^0.8.0",
"jest-date-mock": "^1.0.8",
"jest-environment-jsdom": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"minimist": "^1.2.8",
"node-sass": "^9.0.0",
"object-assign-deep": "^0.4.0",
"sass-loader": "^14.1.0",
"style-loader": "^3.3.4",
"terser-webpack-plugin": "^5.3.10",
"vue-jest": "^3.0.7",
"vue-loader": "^15.11.1",
"vue-svg-inline-plugin": "^2.2.3",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-ext-reloader": "^1.1.12"
}
}