-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
69 lines (69 loc) · 2.16 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
{
"name": "visual-bookmarks-dev",
"version": "1.0.0",
"description": "Visual bookmarks",
"scripts": {
"lint:es": "eslint src/js/**",
"lint:css": "stylelint src/css/**; exit 0",
"lint:html": "htmlhint src/*.html; exit 0",
"lint": "npm run lint:es && npm run lint:css && npm run lint:html",
"start": "webpack --mode=development --watch",
"build": "webpack --mode=production",
"dev:firefox": "BROWSER=firefox webpack --mode=development --watch",
"build:firefox": "BROWSER=firefox webpack --mode=production",
"zip": "bestzip extension.zip extension/*",
"release": "npm run build && npm run zip",
"locales": "node autocompleteLocales.js",
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git@github.com:k-ivan/visual-bookmarks-chrome.git"
},
"browserslist": [
"chrome >= 95"
],
"author": "ivan_k",
"license": "ISC",
"homepage": "https://github.com/k-ivan/visual-bookmarks-chrome#readme",
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"htmlhint": "^1.1.4",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"postcss": "^8.4.20",
"postcss-csso": "^6.0.1",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.0.2",
"postcss-nesting": "^10.2.0",
"postcss-sort-media-queries": "^4.3.0",
"puppeteer": "^19.5.2",
"style-loader": "^3.2.1",
"stylelint": "^14.6.1",
"stylelint-config-standard": "^29.0.0",
"svg-spritemap-webpack-plugin": "^4.5.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.78.0",
"webpack-cli": "^5.0.1",
"webpackbar": "^5.0.2"
},
"dependencies": {
"fast-average-color": "^9.3.0",
"form-validation-plugin": "^0.0.11",
"glory-modal": "^2.3.2",
"idb": "^7.1.1",
"sortablejs": "^1.8.4",
"tabs-slider": "^3.1.1"
}
}