This repository has been archived by the owner on May 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "page-scroll-indicator",
"version": "3.0.3",
"description": "Page scroll indicator for the site",
"main": "src/main.js",
"scripts": {
"production": "cross-env NODE_ENV=production webpack",
"development": "cross-env NODE_ENV=development webpack",
"server": "cross-env NODE_ENV=development webpack serve",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix --color"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
]
},
"keywords": [
"page-scroll-indicator",
"progress-bar",
"scroll-bar",
"indicator",
"scroll",
"progress"
],
"author": "Denis Lopatin [www.denis-lopatin@yandex.ru, https://github.com/DenisLopatin]",
"license": "ISC",
"browserslist": [
"> 1%",
"ie 10"
],
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-loader": "^1.3.2",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"resolve-url-loader": "^3.1.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.0.3",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0"
}
}