-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.86 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.86 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "chrome-extension-hardcode-blackout",
"version": "0.7.1",
"description": "A sophisticated Chrome extension for content filtering with local AI processing",
"main": "dist/background.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"dev": "webpack --config webpack.config.js --mode development --watch",
"prod": "webpack --config webpack.config.js --mode production",
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "playwright test",
"test:unit": "jest --testPathPattern=src/__tests__/unit",
"test:integration": "jest --testPathPattern=src/__tests__/integration"
},
"keywords": [
"chrome-extension",
"content-filtering",
"ai",
"privacy",
"social-media"
],
"author": "",
"license": "MIT",
"dependencies": {
"@emotion/react": "^11.0.0",
"@emotion/styled": "^11.0.0",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sql.js": "^1.13.0"
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@playwright/test": "^1.41.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.0.0",
"@types/chrome": "^0.0.260",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"autoprefixer": "^10.0.0",
"canvas": "^3.1.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.0.0",
"msw": "^2.0.0",
"postcss": "^8.0.0",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.0.0",
"ts-loader": "^9.0.0",
"typescript": "^5.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/src/__tests__/setup.ts"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.tsx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.jest.json",
"useESM": true
}
]
},
"testMatch": [
"<rootDir>/src/__tests__/**/*.test.ts",
"<rootDir>/src/__tests__/**/*.test.tsx"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}