-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
{
"name": "hub-ugc",
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"scripts": {
"dev": "vite",
"deploy": "./deploy.sh",
"build": "vite build",
"build-watch": "vite build --watch",
"buildDev": "vite build --outDir distDev --mode development",
"buildTest": "vite build --outDir distTest --mode test",
"previewDev": "vite preview --outDir distDev --mode development",
"previewTest": "vite preview --outDir distTest --mode test",
"tsc-build": "tsc",
"eslint": "eslint . --ignore-path .gitignore --max-warnings 0",
"eslint:fix": "eslint . --fix --ignore-path .gitignore --max-warnings 0",
"format:check": "prettier --ignore-path .gitignore --check .",
"format": "prettier --ignore-path .gitignore --write .",
"stylelint": "stylelint **/*.css",
"stylelint:write": "stylelint **/*.css --fix"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240725.0",
"@types/iframe-resizer": "^3.5.10",
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"config": "workspace:*",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.3.3",
"standard": "^17.1.0",
"stylelint": "^15.10.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"tsx": "^4.18.0",
"typescript": "~5.6.2",
"vite": "^5.4.11",
"workbox-precaching": "^7.0.0",
"wrangler": "^3.81.0"
},
"dependencies": {
"comlink": "^4.4.1",
"hub": "workspace:*",
"iframe-resizer": "^4.3.7",
"micromorph": "^0.4.5",
"shared": "workspace:*"
}
}