-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
32 lines (32 loc) · 854 Bytes
/
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
{
"name": "sketches",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun dev/dev.ts",
"build": "bun dev/build.ts",
"preview": "vite preview",
"format": "prettier src/. --write",
"lint": "eslint src"
},
"devDependencies": {
"@isaac-mason/eslint-config-typescript": "0.0.9",
"@types/bun": "^1",
"@types/eslint": "^8.56.10",
"@types/express": "^4",
"@types/http-proxy": "^1",
"@types/node": "^22.7.5",
"bun": "^1.1.32",
"eslint": "^9.6.0",
"express": "^4.20.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"workspaces": [
"common",
"container",
"sketches/**/*"
],
"packageManager": "yarn@4.1.1"
}