forked from codex-team/notes.api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "notes.api",
"version": "0.0.1",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && tsc-alias",
"dev": "nodemon --watch './src/**/*.ts' --ext ts --exec 'yarn start:dev'",
"start": "node dist/index.js -c app-config.yaml -c app-config.local.yaml",
"start:dev": "yarn build && node dist/index.js -c app-config.yaml -c app-config.local.yaml",
"migrate": "node --loader ts-node/esm ./src/repository/storage/postgres/migrations/index.ts -c app-config.yaml -c app-config.local.yaml",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test:dev": "vitest",
"test": "vitest run",
"typecheck": "tsc --noEmit -p ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.3",
"@types/pg": "^8.10.2",
"eslint": "^8.41.0",
"eslint-config-codex": "^1.8.3",
"eslint-plugin-vitest": "^0.3.1",
"nodemon": "^2.0.22",
"pino-pretty": "^10.0.0",
"postgres-migrations": "^5.3.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"typescript": "^5.0.4",
"vitest": "^0.34.5"
},
"dependencies": {
"@codex-team/config-loader": "^1.0.0",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.3.0",
"@fastify/oauth2": "^7.2.1",
"@fastify/swagger": "^8.8.0",
"@fastify/swagger-ui": "^1.9.3",
"@testcontainers/postgresql": "^10.2.1",
"arg": "^5.0.2",
"fastify": "^4.17.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"nanoid": "^4.0.2",
"pg": "^8.11.0",
"pg-hstore": "^2.3.4",
"pino": "^8.14.1",
"prom-client": "^14.2.0",
"sequelize": "^6.31.1",
"testcontainers": "^10.2.1",
"zod": "^3.21.4"
},
"packageManager": "[email protected]"
}