-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "screen-capture-virtual-camera",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "http-server ./public -p 3000",
"dev": "cross-env NODE_ENV=development webpack",
"build": "cross-env NODE_ENV=production webpack",
"lint": "run-p lint:*",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint src --ext .js,.ts",
"fix": "run-s fix:*",
"fix:prettier": "prettier --write \"**/*.{js,ts}\"",
"fix:eslint": "eslint src --ext .js,.ts --fix"
},
"devDependencies": {
"@types/chrome": "^0.0.159",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"esbuild-loader": "^2.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"http-server": "^13.0.2",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.4.3",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
}
}