-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "search-blocker",
"description": "Blocks search results you don't want to see from Google, Bing, Yahoo and DuckDuckGo.",
"version": "2.0.0",
"author": "Sho Sato",
"private": true,
"repository": {
"url": "https://github.com/shosatojp/search-blocker"
},
"scripts": {
"build": "node build.js",
"watch": "NODE_ENV=development node build.js",
"type": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"test": "jest"
},
"devDependencies": {
"@mui/lab": "^5.0.0-alpha.100",
"@mui/material": "^5.10.6",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"esbuild": "^0.15.8",
"eslint": "^8.23.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.0.1",
"jest": "^29.0.3",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^5.10.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}