-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.91 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.91 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
{
"name": "@examples/with-code-share-server",
"version": "1.0.1",
"description": "",
"main": "./dist/manage.js",
"private": true,
"scripts": {
"help": "tsx manage.ts help",
"dev": "tsx watch --clear-screen=false --ignore \"./drizzle/**/*\" manage.ts runserver",
"test": "tsx test.ts",
"load": "tsx manage.tests.ts load-models",
"makemigrations": "drizzle-kit generate",
"migrate": "tsx manage.ts drizzleMigrate",
"seed": "tsx manage.ts seedDb",
"clear": "rimraf ./dist",
"build:app": "pnpm run clear && tsup --format esm",
"start": "node ./dist/manage.js runserver"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@9.9.0",
"dependencies": {
"@palmares/console-logging": "workspace:*",
"@palmares/core": "workspace:*",
"@palmares/databases": "workspace:*",
"@palmares/schemas": "workspace:*",
"@palmares/zod-schema": "workspace:*",
"@palmares/drizzle-engine": "workspace:*",
"@palmares/express-adapter": "workspace:*",
"@palmares/logging": "workspace:*",
"@palmares/node-std": "workspace:*",
"@palmares/server": "workspace:*",
"cors": "^2.8.5",
"drizzle-kit": "^0.27.2",
"drizzle-orm": "^0.39.3",
"@examples/with-code-share-shared": "workspace:*"
},
"devDependencies": {
"better-sqlite3": "^11.8.1",
"@palmares/jest-tests": "^0.2.3",
"@palmares/tests": "^0.2.3",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.9.1",
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/node": "^22.13.4",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"tsx": "^4.19.3",
"typescript": "^5.5.4"
},
"type": "module",
"tsup": {
"entry": [
"manage.ts",
"drizzle",
"src/**/*.ts",
"!src/**/*.test.*",
"!src/**/*.tests.*"
],
"loader": {
".sql": "file"
},
"splitting": false,
"sourcemap": true,
"clean": true
}
}