This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
generated from smartlook/element-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.73 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
{
"name": "smartlook-element-picker",
"private": "true",
"version": "1.0.0",
"license": "MIT",
"description": "Chrome extension to allow users to select an element on any page and returns a selector that can be used to target this element.",
"scripts": {
"dev:hot-reload": "mv3-hot-reload",
"dev:webpack": "cross-env NODE_ENV=development webpack",
"dev": "run-p dev:*",
"build": "cross-env NODE_ENV=production webpack",
"lint:non-ts": "prettier --ignore-path .gitignore --check '**/*.{json,html}'",
"lint:non-ts:fix": "prettier --ignore-path .gitignore --check '**/*.{json,html}' --write",
"lint:ts": "eslint --ext .ts,.tsx,.js --ignore-pattern '!.*.js' .",
"lint:ts:fix": "eslint --ignore-path .gitignore --ext .ts,.tsx,.js --fix --ignore-pattern '!.*.js' .",
"lint": "run-p lint:ts lint:non-ts",
"lint:fix": "run-p lint:ts:fix lint:non-ts:fix"
},
"author": "Smartlook.com <[email protected]>",
"dependencies": {
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"mv3-hot-reload": "^0.2.7",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typescript": "^4.8.3",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}