-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.88 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "shark-eagle-note",
"version": "0.0.4",
"description": "A local-only extension that helps you make annotations for any web page",
"author": "Hao Zhou <[email protected]>",
"engines": {
"node": ">=10"
},
"scripts": {
"build:scss": "sass-plus -i src/custom.scss -o dist/bs4.css -c",
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build:scss && cross-env NODE_ENV=production webpack --hide-modules",
"package": "export NODE_OPTIONS=--openssl-legacy-provider && npm run build:scss && cross-env NODE_ENV=production RELEASE=true webpack --hide-modules",
"build-zip": "npm run package && node scripts/build-zip.js"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@johmun/vue-tags-input": "^2.1.0",
"bootstrap": "^4.5.0",
"datatables.net": "^1.10.21",
"datatables.net-bs4": "^1.10.21",
"datatables.net-buttons": "^1.6.2",
"dayjs": "^1.8.27",
"highlight.js": "^10.0.3",
"jquery": "^3.5.1",
"mark.js": "^8.11.1",
"markdown-it": "^12.3.2",
"popper.js": "^1.16.1",
"pouchdb-browser": "^9.0.0",
"pouchdb-find": "^9.0.0",
"toastr": "^2.1.4",
"validator": "^13.5.2",
"vue": "^2.6.10",
"vuex": "^3.4.0",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.9.6",
"@babel/runtime-corejs3": "^7.9.6",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.2",
"babel-runtime": "^6.26.0",
"copy-webpack-plugin": "^5.1.2",
"core-js": "^3.6.5",
"cross-env": "^5.2.0",
"css-loader": "^3.5.3",
"ejs": "^3.1.7",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.1",
"file-loader": "^5.0.2",
"husky": "^2.4.0",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.17.1",
"pretty-quick": "^1.8.0",
"sass": "^1.62.0",
"sass-loader": "^7.1.0",
"sass-plus": "^0.11.0",
"terser-webpack-plugin": "^2.3.6",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.0"
}
}