-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.2 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "spiffy",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "npm run format && tsc -p tsconfig.json",
"start:dev": "nodemon ./dist/index.js",
"start:all": "concurrently \"npm:watch:tsc\" \"npm:start:dev\"",
"start:heroku": "node ./dist/index.js",
"compile-schemas": "json2ts -i ./src/schemas -o ./src/types",
"watch:tsc": "tsc -p tsconfig.json --watch",
"format": "prettier -w .",
"deploy": "npx prisma db push && npx prisma generate && npm run start:heroku",
"benchmark": "npm run benchmark"
},
"keywords": [],
"author": "rickhallett",
"license": "ISC",
"dependencies": {
"@clerk/fastify": "^0.6.6",
"@faker-js/faker": "^8.0.2",
"@fastify/auth": "^4.3.0",
"@fastify/autoload": "^5.7.1",
"@fastify/basic-auth": "^5.0.0",
"@fastify/one-line-logger": "^1.2.0",
"@fastify/routes": "^5.1.0",
"@fastify/schedule": "^4.1.1",
"@fastify/sensible": "^5.2.0",
"@fastify/swagger": "^8.10.0",
"@fastify/swagger-ui": "^1.9.3",
"@fastify/type-provider-typebox": "^3.5.0",
"@prisma/client": "^5.2.0",
"@sinclair/typebox": "^0.31.14",
"autocannon": "^7.12.0",
"bcrypt": "^5.1.1",
"concurrently": "^8.2.1",
"dotenv": "^16.3.1",
"fastify": "^4.23.0",
"fastify-blipp": "^4.0.0",
"fastify-crud-generator": "^1.0.1",
"fastify-markdown": "^0.4.0",
"fastify-plugin": "^4.5.1",
"json-schema-to-ts": "^2.9.2",
"json-schema-to-typescript": "^13.1.1",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongodb": "^6.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"prisma": "^5.2.0",
"rfdc": "^1.3.0",
"swagger-jsdoc": "^6.2.8",
"toad-scheduler": "^3.0.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.1",
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.6.0",
"@types/swagger-jsdoc": "^6.0.1"
},
"_moduleAliases": {
"@root": "dist/",
"@routes": "dist/routes",
"@plugins": "dist/plugins",
"@docs": "dist/docs",
"@models": "dist/models",
"@utils": "dist/utils"
}
}