-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"name": "rp-web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"build": "yarn workspaces foreach -tAp run build",
"verify": "yarn workspaces foreach -tAp run verify",
"format": "npx prettier . --write",
"lint-staged:workspaces": "yarn workspaces foreach --exclude \"rp-web\" --since -tp run verify && npx prettier . --check",
"prepare": "husky"
},
"workspaces": [
"apps/*",
"!apps/template",
"shared"
],
"devDependencies": {
"@eslint/js": "^9.23.0",
"eslint": "^9.23.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.6",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"prettier": "^3.5.3",
"typescript": "^5.2.2",
"typescript-eslint": "^8.27.0"
},
"packageManager": "yarn@4.9.1",
"dependencies": {
"@rp/shared": "workspace:*",
"@types/seedrandom": "^3.0.8",
"dompurify": "^3.2.6",
"marked": "^16.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-qr-reader": "^3.0.0-beta-1",
"react-router-dom": "7.8.1",
"seedrandom": "^3.0.5"
}
}