-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.14 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.14 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
{
"name": "filters-tests",
"private": true,
"scripts": {
"serve": "react-scripts start",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build": "react-scripts build",
"build:static": "node -r esbuild-register ./buildStaticData.js",
"build:watch": "chokidar 'src/**/*' 'public/**/*' -c 'pnpm build'",
"deploy": "wrangler pages deploy build --project-name=adguard-testcases",
"lint": "pnpm lint:code && pnpm lint:md",
"lint:code": "eslint . --ext .js,.ts --cache",
"lint:md": "markdownlint . --ignore build",
"stylelint": "stylelint ./src/styles/*.scss"
},
"husky": {
"hooks": {
"pre-commit": "pnpm stylelint && pnpm lint && cross-env CI=true react-scripts test"
}
},
"stylelint": {
"extends": "stylelint-config-recommended-scss"
},
"jest": {
"moduleNameMapper": {
"react-markdown": "<rootDir>/node_modules/react-markdown/react-markdown.min.js",
"remark-gfm": "<rootDir>/src/__mocks__/remark-gfm.js"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"pnpm": {
"overrides": {
"fork-ts-checker-webpack-plugin": "6.5.3",
"eslint-plugin-react": "7.28.0"
},
"onlyBuiltDependencies": [
"core-js",
"core-js-pure",
"esbuild",
"husky",
"workerd"
]
},
"dependencies": {
"@babel/runtime": "7.20.13",
"dotenv": "16.3.1",
"http-proxy-middleware": "2.0.6",
"prop-types": "15.8.1",
"proxy-agent": "6.3.0",
"react": "18.2.0",
"react-app-polyfill": "3.0.0",
"react-dom": "18.2.0",
"react-markdown": "8.0.5",
"react-modal": "3.16.1",
"react-scripts": "5.0.1",
"remark-gfm": "3.0.1",
"sass": "1.66.1"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240815.0",
"@types/mustache": "4.2.5",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"chokidar-cli": "3.0.0",
"cross-env": "7.0.3",
"esbuild": "0.17.4",
"esbuild-register": "3.4.2",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-compat": "6.0.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"husky": "3.0.3",
"markdownlint": "0.40.0",
"markdownlint-cli": "0.48.0",
"mustache": "4.2.0",
"stylelint": "10.1.0",
"stylelint-config-recommended-scss": "3.3.0",
"stylelint-scss": "3.9.3",
"typescript": "5.5.4",
"wrangler": "3.72.0"
}
}