-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.21 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
{
"name": "joist-ts-sample",
"scripts": {
"codegen": "yarn joist-codegen",
"db": "docker compose up --wait db && yarn pg-migrate && yarn codegen",
"redb": "docker compose exec db ./reset.sh && yarn pg-migrate && yarn codegen",
"test": "jest",
"pg-migrate": "env-cmd tsx ./node_modules/joist-migration-utils",
"pg-new-migration": "npx node-pg-migrate create",
"joist-codegen": "env-cmd tsx ./node_modules/joist-codegen",
"format": "prettier --write 'src/**/*.{ts,js,tsx,jsx}'",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephenh/joist-ts-sample.git"
},
"license": "ISC",
"homepage": "https://github.com/stephenh/joist-ts-sample#readme",
"prettier": {
"trailingComma": "all",
"printWidth": 120
},
"dependencies": {
"joist-codegen": "^1.277.0",
"joist-migration-utils": "^1.277.0",
"joist-orm": "^1.277.0"
},
"devDependencies": {
"@homebound/tsconfig": "^1.1.1",
"@jest/globals": "30.2.0",
"@swc/core": "^1.13.5",
"@swc/jest": "^0.2.39",
"env-cmd": "^11.0.0",
"jest": "30.2.0",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.10.3"
}