generated from mishabruml/ts-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
{
"name": "ts-node-starter",
"engines": {
"node": "^14.18.0",
"npm": "^6.14.15"
},
"version": "1.0.0",
"description": "typescript node project boilerplate",
"author": "Misha Bruml",
"license": "ISC",
"main": "dist/bundle.js",
"scripts": {
"tsc:check": "tsc --noEmit",
"typeorm": "typeorm-ts-node-commonjs",
"typeorm:migration:generate": "USE_TS_MIGRATIONS=true npm run typeorm -- migration:generate src/handlers/migrations/migrate -d src/datasource.ts",
"typeorm:migration:run": "USE_TS_MIGRATIONS=true npm run typeorm -- migration:run -d src/datasource.ts",
"esbuild:build-plugin": "esbuild sls-esbuild-plugins/additionalEntrypointsGlobPlugin.ts --platform=node --outdir=sls-esbuild-plugins --bundle",
"sls:package": "npm run esbuild:build-plugin && sls package",
"sls:migrate": "npm run esbuild:build-plugin && sls invoke local --function migrate"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.18.12",
"esbuild": "^0.14.47",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.5.1",
"serverless": "^3.19.0",
"serverless-esbuild": "^1.30.0",
"tiny-glob": "^0.2.9",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"ts-node": "^9.1.1",
"typescript": "^4.6.3",
"xo": "^0.45.0"
},
"dependencies": {
"pg": "^8.7.3",
"typeorm": "^0.3.6"
}
}