-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 863 Bytes
/
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
{
"name": "fastify-swc-typescript-server",
"version": "1.0.0",
"description": "A Fastify server leveraging SWC for transpilation and Jest for testing.",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon --watch 'src' --ext '*' --exec 'node -r @swc-node/register' src/index.ts",
"test": "jest",
"build": "rimraf dist && swc src -d dist",
"start": "node dist/index.js"
},
"keywords": [],
"author": "@mattfsourcecode",
"license": "MIT",
"dependencies": {
"fastify": "^5.1.0"
},
"devDependencies": {
"@swc-node/jest": "^1.8.12",
"@swc-node/register": "^1.10.9",
"@swc/cli": "^0.5.0",
"@swc/core": "^1.7.42",
"@swc/helpers": "^0.5.13",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2"
}
}