-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.9 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
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
{
"name": "questionable-content-spa",
"version": "1.3.0",
"description": "Questionable Content Single-Page Application with Extra Features",
"private": true,
"scripts": {
"start": "cross-env PORT=8124 BROWSER=none FAST_REFRESH=false WDS_SOCKET_HOST=localhost EXTEND_ESLINT=true react-app-rewired start",
"build": "npm-run-all build-storybook build-userscript",
"build-userscript": "node build",
"react-build": "react-app-rewired build --stats",
"debug-build": "react-app-rewired --inspect-brk=5858 build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook dev -p 6006 -s ../public --no-open",
"build-storybook": "storybook build -s ./public",
"test-storybook": "test-storybook --url http://127.0.0.1:6006",
"prepare": "husky install",
"analyze": "webpack-bundle-analyzer build/bundle-stats.json"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@storybook/addon-actions": "^7.4.0",
"@storybook/addon-essentials": "^7.4.0",
"@storybook/addon-interactions": "^7.4.0",
"@storybook/addon-links": "^7.4.0",
"@storybook/jest": "^0.2.2",
"@storybook/node-logger": "^7.4.0",
"@storybook/preset-create-react-app": "^7.4.0",
"@storybook/preview-api": "^7.4.0",
"@storybook/react": "^7.4.0",
"@storybook/react-webpack5": "^7.4.0",
"@storybook/test-runner": "^0.16.0",
"@storybook/testing-library": "^0.2.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/greasemonkey": "^4.0.4",
"@types/react-color": "^3.0.6",
"@types/redux-logger": "^3.0.9",
"autoprefixer": "^10.4.15",
"babel-plugin-named-exports-order": "^0.0.2",
"cross-env": "^7.0.3",
"eslint-plugin-storybook": "^0.6.13",
"husky": "^8.0.3",
"lint-staged": "^15.2.10",
"msw": "^1.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"prop-types": "^15.8.1",
"react-app-rewired": "^2.2.1",
"storybook": "^7.4.0",
"tailwindcss": "^3.3.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.2.2",
"typescript-plugin-css-modules": "^5.0.1",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.9.1"
},
"dependencies": {
"@reduxjs/toolkit": "^1.7.2",
"@types/node": "^18",
"@types/react": "^18",
"@types/react-dom": "^18",
"marked": "^8.0.1",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-scripts": "^5.0.1",
"react-toastify": "^9.1.3",
"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": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings 0"
]
},
"msw": {
"workerDirectory": "public"
},
"overrides": {
"react-scripts": {
"jest": "^28.1.3",
"jest-resolve": "^28.1.3",
"jest-watch-typeahead": "^2.0.0"
}
}
}