-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.6 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.6 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
{
"name": "@quisi/do",
"version": "1.0.0",
"author": "quisi.do <contact@quisi.do>",
"description": "quisi.do",
"homepage": "https://quisi.do/",
"license": "UNLICENSED",
"private": true,
"type": "module",
"scripts": {
"build": "npm run tsc:version && npm run tsc:build && node ./dist/scripts/build.js",
"start": "npm run tsc:build && node ./dist/scripts/start.js",
"test": "quisido test && npm run test:workspaces",
"authn": "npm start --workspace=packages/authn",
"browserslist:update-db": "browserslist --update-db",
"clean": "rimraf .cache .tests dist && npm run clean --if-present --workspaces && rimraf node_modules",
"cloudflare-utils": "npm start --workspace=packages/cloudflare-utils",
"csp": "npm start --workspace=packages/csp",
"dashboard": "npm start --workspace=packages/dashboard",
"eslint": "quisido eslint",
"eslint-config": "npm start --workspace=packages/eslint-config",
"fmrs": "npm start --workspace=packages/fmrs",
"game": "npm start --workspace=packages/game",
"lighthouse": "npm start --workspace=packages/vite",
"postlighthouse": "npm start --workspace=packages/vite",
"prompt": "quisido-ai",
"publint": "quisido publint",
"publish": "node ./dist/scripts/publish.js",
"quisido": "npm start --workspace=packages/quisido",
"react-datadog": "npm start --workspace=packages/react-datadog",
"test:workspaces": "node ./dist/scripts/test.js",
"tsc:build": "tsc --project tsconfig.build.json",
"tsc:version": "tsc --version",
"update": "node ./dist/scripts/update.js",
"vite": "npm start --workspace=packages/vite",
"vitest": "vitest run",
"worker": "npm start --workspace=packages/worker"
},
"bugs": {
"email": "bugs@quisi.do",
"url": "https://github.com/quisido/quisi.do/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/quisido"
},
"repository": {
"type": "git",
"url": "git+https://github.com/quisido/quisi.do.git"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"fmrs": "^2.1.1"
},
"devDependencies": {
"@hint/connector-puppeteer": "^2.5.25",
"@hint/formatter-codeframe": "^3.1.36",
"@hint/formatter-html": "^4.3.17",
"@hint/formatter-json": "^3.1.36",
"@hint/formatter-stylish": "^3.1.36",
"@hint/formatter-summary": "^3.0.39",
"@hint/hint-doctype": "^3.3.27",
"@hint/hint-https-only": "^2.4.27",
"@hint/hint-meta-theme-color": "^4.0.23",
"@hint/hint-minified-js": "^2.4.27",
"@hint/hint-no-broken-links": "^4.2.27",
"@hint/hint-no-p3p": "^3.3.27",
"@hint/hint-performance-budget": "^2.4.27",
"@hint/parser-babel-config": "^2.1.43",
"@hint/parser-css": "^3.0.39",
"@hint/parser-html": "^3.1.4",
"@hint/parser-javascript": "^3.1.25",
"@hint/parser-jsx": "^1.1.6",
"@hint/parser-manifest": "^2.3.20",
"@hint/parser-package-json": "^1.1.43",
"@hint/parser-sass": "^1.0.31",
"@hint/parser-typescript": "^1.0.26",
"@hint/parser-typescript-config": "^2.4.31",
"@hint/parser-webpack-config": "^2.1.42",
"@hint/utils-types": "^1.2.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.10.4",
"@vitest/ui": "^4.0.6",
"browserslist": "^4.24.5",
"concurrently": "^9.1.2",
"hint": "^7.1.13",
"jiti": "^2.6.1",
"puppeteer-core": "^24.35.0",
"quisido": "^0.0.2",
"rimraf": "^6.1.0",
"typescript": "^5.8.3",
"vitest": "^4.1.0"
},
"overrides": {
"@hint/connector-puppeteer": {
"puppeteer-core": ">=22.11.1"
},
"eslint-plugin-react-hooks": {
"zod-validation-error": "^4.0.0"
}
}
}