-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.45 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": "saveorskip",
"version": "1.0.15",
"description": "Save pages you visit. Get recommendations based on your previous saves.",
"author": "opowell <opowell@gmail.com>",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"precommit": "pretty-quick --staged",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch",
"postinstall": "node postinstall.js"
},
"dependencies": {
"@types/chrome": "0.0.103",
"bootstrap-vue": "^2.1.0",
"core-js": "^2.6.11",
"idb": "^4.0.5",
"moment": "^2.24.0",
"regenerator-runtime": "^0.13.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-devtools": "^5.1.3",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"vuex-persist": "^2.2.0",
"vuex-persistedstate": "^2.7.0",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@vue/devtools": "^5.3.3",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.1",
"css-loader": "^3.3.2",
"ejs": "^2.7.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"pretty-quick": "^1.11.1",
"replace-in-file": "^6.1.0",
"sass-loader": "^7.3.1",
"vue-loader": "^15.7.2",
"vue-template-compiler": "^2.6.11",
"web-ext-types": "^2.1.0",
"webpack": "^4.41.2",
"webpack-chrome-extension-reloader": "^0.8.3",
"webpack-cli": "^3.3.10",
"webpack-shell-plugin": "^0.5.0",
"zip-folder": "^1.0.0"
}
}