forked from riccardoperra/codeimage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.31 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.31 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
{
"name": "@codeimage/api",
"version": "0.1.1",
"description": "CodeImage api rest server",
"main": "app.ts",
"directories": {
"test": "test"
},
"exports": {
"./api-types": {
"types": "./index.d.ts"
}
},
"scripts": {
"test": "dotenv -e .env.test -- tap --ts --reporter=terse './test/**/*.test.ts' --before=test/before-test.ts",
"test:ci": "dotenv -e .env.test -- tap --no-check-coverage --ts './test/**/*.test.ts' --before=test/before-test.ts",
"start": "npm run build:ts && fastify start -l info dist/app.js",
"typecheck": "tsc --noEmit --skipLibCheck --project tsconfig.json",
"typecheck:ci": "tsc --skipLibCheck --project tsconfig.dts.json",
"build:ts": "tsc",
"watch:ts": "tsc -w",
"prisma:migrate:dev": "prisma migrate dev",
"prisma:migrate:test": "dotenv -e .env.test -- pnpm exec prisma migrate dev",
"prisma:migrate:deploy": "prisma migrate deploy",
"prisma:migrate:deploy-test": "dotenv -e .env.test -- pnpm exec prisma migrate deploy",
"prisma:generate": "prisma generate dev && pnpm --filter=@codeimage/prisma-models build",
"dev": "concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"blue.bold,cyan.bold\" \"npm:dev:start\"",
"dev:start": "tsx watch node_modules/fastify-cli/cli.js start --ignore-watch=.ts$ -w -l info -P src/app.ts"
},
"keywords": [],
"author": "Riccardo Perra",
"license": "ISC",
"dependencies": {
"@codeimage/prisma-models": "workspace:*",
"@fastify/autoload": "^5.7.0",
"@fastify/cors": "^8.2.0",
"@fastify/env": "^4.2.0",
"@fastify/jwt": "^6.5.0",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.2.1",
"@fastify/type-provider-typebox": "^2.4.0",
"@prisma/client": "^4.8.0",
"@sinclair/typebox": "^0.25.16",
"close-with-grace": "^1.1.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^6.0.0",
"fastify": "^4.11.0",
"fastify-auth0-verify": "^1.0.0",
"fastify-cli": "^5.7.0",
"fastify-healthcheck": "^4.3.0",
"fastify-plugin": "^4.4.0",
"fluent-json-schema": "^4.0.0",
"prisma": "^4.8.0"
},
"devDependencies": {
"@types/node": "^18.11.0",
"@types/sinon": "^10.0.13",
"@types/tap": "^15.0.7",
"concurrently": "^7.6.0",
"fastify-tsconfig": "^1.0.1",
"sinon": "^15.0.1",
"tap": "^16.3.2",
"typescript": "^4.8.4"
}
}