-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 991 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
32
33
34
35
{
"name": "node-ts-esm-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "swc src --out-dir dist/src",
"build:ci": "tsc && npm run build:dev",
"build:watch": "swc src -w --out-dir dist/src",
"migrate": "node --import tsx bin/run-migration.ts",
"start:dev": "concurrently \"npm run build:watch\" \"nodemon --watch 'dist/**/*.js' -e js dist/src/app.js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Alejandro Oviedo <[email protected]>",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.100",
"@swc/plugin-transform-imports": "^1.5.105",
"@types/node": "^20.10.2",
"concurrently": "^8.2.2",
"nodemon": "^3.0.2",
"tsx": "^4.6.2",
"typescript": "^5.3.2"
},
"dependencies": {
"chalk": "^5.3.0",
"fastify": "^4.24.3"
},
"engines": {
"node": ">=20.6"
}
}