-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.97 KB
/
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
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
{
"name": "poster-craft",
"version": "0.0.1",
"description": "Poster editor",
"license": "MIT",
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/ileostar/PosterCraft/issues"
},
"homepage": "https://github.com/ileostar/PosterCraft",
"engines": {
"node": "20.16.0"
},
"scripts": {
"schema:build": "pnpm -F @poster-craft/schema build",
"db:init": "pnpm schema:build && pnpm -F @poster-craft/db run init",
"db:init:test": "pnpm schema:build && pnpm -F @poster-craft/db run init:test",
"db:init:test:ci": "pnpm schema:build && pnpm -F @poster-craft/db run init:ci",
"dev:web": "pnpm -F web dev",
"dev:server": "pnpm -F server start",
"lint": "turbo lint --no-daemon",
"test": "turbo test --no-daemon",
"format": "prettier --write --cache .",
"format-check": "prettier --check --cache .",
"build": "pnpm schema:build && turbo build --no-daemon",
"build:server": "pnpm schema:build && pnpm -F server build",
"build:web": "pnpm -F web build",
"prod:serve": "pnpm -F server start:prod:pm",
"test:ci": "pnpm -F server test && pnpm -F web test:ci",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"docs:dev": "pnpm -F docs docs:dev",
"build:docs": "pnpm -F docs docs:build",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"knip": "knip"
},
"dependencies": {
"@t3-oss/env-core": "0.11.0",
"axios": "1.7.4",
"drizzle-orm": "0.32.1",
"zod": "3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.3.1",
"@types/node": "20.14.14",
"conventional-changelog-cli": "5.0.0",
"dotenv": "16.4.5",
"eslint": "9.8.0",
"knip": "^5.38.3",
"lint-staged": "15.2.8",
"picocolors": "1.0.1",
"prettier": "3.3.3",
"simple-git-hooks": "2.11.1",
"tsup": "8.2.4",
"tsx": "4.16.5",
"turbo": "2.0.11",
"typescript": "5.5.4",
"vitest": "2.1.9"
}
}