-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "fastify-swc-typescript-server",
"packageManager": "[email protected]+sha512.68046141893c66fad01c079231128e9afb89ef87e2691d69e4d40eee228988295fd4682181bae55b58418c3a253bde65a505ec7c5f9403ece5cc3cd37dcf2531",
"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.2.2"
},
"devDependencies": {
"@swc-node/jest": "^1.8.13",
"@swc-node/register": "^1.10.10",
"@swc/cli": "^0.6.0",
"@swc/core": "^1.11.18",
"@swc/helpers": "^0.5.15",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.0",
"jest": "^29.7.0",
"license-checker": "^25.0.1",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2"
}
}