-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.2 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
{
"name": "aging-bookmark",
"version": "0.0.1",
"description": "Bookmark aging tool",
"author": "mfuku",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"lint": "eslint --ext .js,.vue src",
"build-zip": "node scripts/build-zip.js",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"dependencies": {
"@mdi/font": "^3.5.95",
"axios": "^0.19.0",
"vue": "^2.6.10",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vuetify": "^2.2.6",
"vuex": "^3.0.1",
"vuex-module-decorators": "^0.9.8",
"vuex-persistedstate": "^2.5.4",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime-corejs3": "^7.4.0",
"@nuxtjs/vuetify": "^1.10.2",
"@types/chrome": "^0.0.91",
"@types/sqlite3": "^3.1.6",
"@vue/cli-plugin-typescript": "^3.4.1",
"archiver": "^3.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.2",
"chai": "4.x.x",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^3.4.0",
"deepmerge": "^4.2.2",
"ejs": "^2.6.1",
"fibers": "^4.0.2",
"file-loader": "^5.0.2",
"husky": "^2.4.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.9.3",
"prettier": "^1.17.1",
"pretty-quick": "^1.8.0",
"sass": "^1.25.0",
"sass-loader": "^8.0.2",
"ts-loader": "^4.5.0",
"tslint": "^5.x.x",
"typescript": "^3.3.3333",
"vue-cli-plugin-vuetify": "^2.0.3",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.3.10",
"webpack-extension-reloader": "^1.1.0"
},
"engines": {
"node": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "MIT"
}