-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.37 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
{
"name": "network-logger",
"version": "1.0.0",
"description": "Browser Extension to log specific network traffic",
"main": "index.js",
"scripts": {
"// public //": "public scripts:",
"dist": "npm run clean && npm run build && npm run copy",
"watch": "onchange src/** -- npm run build",
"lint": "eslint --ext .ts,.tsx ./src",
"test": "jest -c ./config/jest.config.js",
"// private //": "private scripts:",
"build:bg": "esbuild --bundle src/background/index.ts --outfile=dist/background/index.js",
"build:content": "esbuild --bundle src/content/index.ts --outfile=dist/content/index.js",
"build:devtools:all": "npm run build:devtools && npm run build:devtools:app",
"build:devtools": "esbuild --bundle src/devtools/index.ts --outfile=dist/devtools/index.js",
"build:devtools:app": "esbuild --bundle src/devtools/app/index.tsx --outfile=dist/devtools/app/index.js",
"build": "npm run build:bg && npm run build:content && npm run build:devtools && npm run build:devtools:app",
"clean": "rimraf dist",
"copy:devtools": "copyfiles -u 1 src/devtools/**/*.html dist/",
"copy:static": "copyfiles manifest.json assets/**/* dist",
"copy": "npm run copy:devtools && npm run copy:static"
},
"author": "ShinaZin aka Sol0Zon3",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/chrome": "^0.0.177",
"@types/jest": "^25.2.3",
"@types/node": "^17.0.13",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/experimental-utils": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"babel-jest": "^26.0.1",
"copyfiles": "^2.4.1",
"esbuild": "^0.12.29",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^26.0.1",
"jest-chrome": "^0.7.0",
"onchange": "^7.1.0",
"rimraf": "^3.0.2",
"sass": "^1.26.5",
"ts-jest": "^26.0.0",
"typescript": "^4.5.5"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"styled-components": "^5.3.3"
},
"packageManager": "yarn@3.1.1"
}