-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "page-notes",
"version": "0.1.0",
"private": true,
"description": "Make notes about web pages; translate them; share them.",
"repository": "https://github.com/BigBlueHat/page-notes",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"clean": "rm extension/dist/*",
"lint": "eslint --ext .js,.vue src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=10"
},
"keywords": [
"Web",
"Annotation",
"translation",
"commenting"
],
"author": "BigBlueHat <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"dom-anchor-text-position": "^3.0.3",
"dom-anchor-text-quote": "^3.0.0",
"pouchdb-browser": "^7.2.1",
"pouchdb-find": "^0.10.5",
"vue": "^2.6.11",
"vue-clickaway": "^2.2.2",
"wrap-range-text": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.2",
"vue-loader": "^15.9.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}