-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.45 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.45 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
{
"name": "ticlo-workspace",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter @ticlo/file-server run build && pnpm --filter @ticlo/file-client run build",
"dev": "tsx watch app/index.ts",
"lint": "eslint \"packages/file-server/src/**/*.ts\" \"packages/file-client/src/**/*.ts\" \"app/**/*.ts\"",
"lint:fix": "eslint --fix \"packages/file-server/src/**/*.ts\" \"packages/file-client/src/**/*.ts\" \"app/**/*.ts\"",
"test": "pnpm run test:node && pnpm run test:browser",
"test:browser": "vitest run --config vitest.config.browser.ts --browser",
"test:node": "vitest run --config vitest.config.ts",
"test:watch": "vitest --watch"
},
"author": "",
"license": "MPL-2.0",
"description": "",
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b",
"dependencies": {
"@fastify/static": "^8.2.0",
"fastify": "^5.6.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^24.5.2",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"@vitest/browser": "^2.1.4",
"devtools": "^8.46.0",
"eslint": "^9.36.0",
"globals": "^15.12.0",
"jsdom": "^25.0.1",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^2.1.4",
"webdriverio": "^8.38.0"
}
}