-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.96 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.96 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "questionable-content-spa",
"version": "1.4.0",
"description": "Questionable Content Single-Page Application with Extra Features",
"private": true,
"scripts": {
"start": "npm-run-all --parallel start:watch start:serve",
"start:watch": "vite build --mode development --watch",
"start:serve": "vite preview --outDir build --port 8124 --strictPort",
"build": "npm-run-all build-storybook build-userscript",
"build-userscript": "node build",
"vite-build": "vite build",
"test": "npm-run-all test:react test:storybook",
"test:react": "vitest run --project=unit",
"test:storybook": "vitest run --project=storybook",
"test:watch": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky"
},
"author": "Alexander Krivács Schrøder",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Questionable-Content-Extensions/client/issues"
},
"homepage": "https://questionablextensions.net/",
"devDependencies": {
"@commitlint/cli": "^21.2.0",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@storybook/addon-links": "^10.4.6",
"@storybook/addon-vitest": "^10.4.6",
"@storybook/react-vite": "^10.4.6",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/greasemonkey": "^4.0.7",
"@types/react-color": "^3.0.13",
"@types/redux-logger": "^3.0.13",
"@typescript-eslint/parser": "^8.62.1",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^10.6.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-storybook": "^10.4.6",
"globals": "^17.7.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"lint-staged": "^17.0.8",
"msw": "^2.14.6",
"msw-storybook-addon": "^2.0.7",
"npm-run-all": "^4.1.5",
"pathe": "^2.0.3",
"playwright": "^1.61.1",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"prop-types": "^15.8.1",
"storybook": "^10.4.6",
"tailwindcss": "^4.3.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.62.1",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^8.1.2",
"vite-plugin-css-injected-by-js": "^5.0.1",
"vitest": "^4.1.9"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"@types/node": "^24",
"@types/react": "^18",
"@types/react-dom": "^18",
"marked": "^18.0.5",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-toastify": "^11.1.0",
"redux": "^4.2.1",
"redux-logger": "^3.0.6"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"**/*.{json,css,scss,md}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --max-warnings 0 --no-warn-ignored"
]
},
"msw": {
"workerDirectory": "public"
},
"overrides": {
"redux": "^4.2.1"
}
}