-
Notifications
You must be signed in to change notification settings - Fork 627
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 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
{
"name": "manicode-project",
"version": "1.0.0",
"private": true,
"license": "UNLICENSED",
"workspaces": [
"common",
"backend",
"npm-app",
"web",
"test",
"packages/*"
],
"scripts": {
"start-client": "bun --cwd npm-app start",
"start-db": "bun --cwd common db:start",
"start-web": "bun run start-db && bun --cwd web dev",
"start-server": "bun run start-db && bun --cwd backend start",
"start-manifold": "bun --cwd npm-app start-manifold",
"start-litestar": "bun --cwd npm-app start-litestar",
"start-jpcsp": "bun --cwd npm-app start-jpcsp",
"start-vscode": "bun --cwd npm-app start-vscode",
"start-nushell": "bun --cwd npm-app start-nushell",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"bump": "bun run scripts/bump-version.ts",
"deploy:npm-app": "bun run bump && cd npm-app && npm publish",
"test:patch": "bun test test/__src__/patch.test.ts"
},
"dependencies": {
"lodash": "4.17.21",
"ts-node": "^10.9.2"
},
"packageManager": "bun@1.1.27",
"devDependencies": {
"@types/lodash": "4.17.7",
"@types/node": "20.11.18",
"bun-types": "^1.1.25",
"prettier": "3.3.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.5.4"
},
"engines": {
"node": ">=20.0.0"
}
}