-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 857 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
33
34
{
"name": "owwo",
"type": "module",
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.7",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "^1.1.13",
"@types/uuid": "^9.0.8",
"bun-types": "latest",
"prettier": "^3.3.3",
"typescript-plugin-css-modules": "^5.1.0"
},
"workspaces": [
"test/**/*",
"site/**/*",
"assets/**/*",
"ui/**/*",
"db/**/*",
"globals/**/*"
],
"peerDependencies": {
"typescript": "^5.6.3"
},
"scripts": {
"dev": "NODE_ENV=developement bun --watch ./site/entrypoint/src/index.ts",
"start": "NODE_ENV=production bun ./src/scripts/index.script.ts",
"build": "bun ./src/scripts/build.script.ts",
"test": "bun test",
"db:main": "cd db/main/ && bun drizzle-kit"
},
"override": {
"@sinclair/typebox": "0.32.4"
}
}