-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.62 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
{
"name": "FocuScroll",
"description": "Focus scrollable element, enable scrolling with PageDown key",
"private": true,
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@playwright/test": "^1.31.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"babel-loader": "^9.1.0",
"babel-plugin-ramda": "^2.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"dotenv": "^16.0.3",
"eslint": "^8.29.0",
"package": "^1.0.1",
"typescript": "^4.9.4",
"watchlist": "^0.3.1",
"web-ext": "^7.3.1",
"webextension-polyfill": "^0.10.0",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"zip-webpack-plugin": "^4.0.1"
},
"scripts": {
"lint:ts": "tsc",
"lint": "eslint --cache --ext js,jsx,ts,tsx src tests",
"build": "webpack",
"build:prod": "cross-env NODE_ENV=production webpack",
"test": "playwright test",
"dev:chrome": "cross-env BROWSER=chrome webpack watch",
"build:chrome": "cross-env BROWSER=chrome webpack",
"build:prod:chrome": "cross-env NODE_ENV=production BROWSER=chrome webpack",
"build:dev:analyze": "webpack --profile --json > stats.json && yarn webpack-bundle-analyzer stats.json build/",
"build:analyze": "cross-env NODE_ENV=production webpack --profile --json > stats.json && yarn webpack-bundle-analyzer stats.json build/"
},
"license": "MIT"
}