This repository has been archived by the owner on Dec 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.54 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
{
"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,.js --ignore-pattern '!.*.js' .",
"lint:ts:fix": "eslint --ignore-path .gitignore --ext .ts,.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]>",
"devDependencies": {
"@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",
"mv3-hot-reload": "^0.2.7",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"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"
}
}