-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.3 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.3 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
70
{
"name": "couchbase-starter-kit-cbjs",
"version": "0.1.0",
"description": "",
"author": "Jonathan Massuchetti <jonathan.massuchetti@dappit.fr>",
"license": "UNLICENSED",
"engines": {
"node": ">=20"
},
"type": "module",
"packageManager": "pnpm@9.0.6",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "tsc --build --watch",
"server": "node src/dist/index.js",
"server-dev": "cross-env NODE_ENV=development pnpm dlx tsx watch --tsconfig tsconfig.tsx.json src/index.ts",
"build": "cd src && rm -rf dist && tsc --build tsconfig.build.json && tsconfig-replace-paths --project tsconfig.build.json",
"test": "cross-env NODE_ENV=test vitest --config vitest.config.mts run",
"test:watch": "cross-env NODE_ENV=test vitest --config vitest.config.mts watch",
"ts:check": "tsc --noEmit --noEmitOnError"
},
"dependencies": {
"@ark/schema": "^0.21.0",
"@cbjsdev/cbjs": "^1.21.1",
"@paralleldrive/cuid2": "^2.2.2",
"@trpc/server": "11.0.0-rc.502",
"arktype": "2.0.0-rc.21",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"json-bigint": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"pino": "^9.0.0",
"slugify": "^1.6.6",
"ts-retry-promise": "^0.8.1",
"tslib": "^2.4.0"
},
"devDependencies": {
"@cbjsdev/deploy": "^1.21.1",
"@cbjsdev/http-client": "^1.21.1",
"@cbjsdev/vitest": "^1.21.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/json-bigint": "^1.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.12.12",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/runner": "^1.6.0",
"@vitest/ui": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "48.0.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-vitest": "^0.3.9",
"glob": "^10.4.1",
"prettier": "3.2.5",
"rollup": "^4.21.0",
"rollup-plugin-ts": "^3.4.5",
"tsconfig-replace-paths": "^0.0.14",
"typescript": "5.5.2",
"vitest": "^2.0.5"
}
}