-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 986 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
36
37
38
{
"name": "project-template",
"version": "1.0.0",
"description": "Project Template",
"main": "index.js",
"author": "@moestafa",
"license": "MIT",
"private": true,
"workspaces": [
"lib/*"
],
"devDependencies": {
"@swc/core": "^1.2.84",
"@types/crypto-random-string": "^2.0.0",
"@types/express": "^4.17.13",
"@types/node": "^16.7.10",
"chokidar": "^3.5.2",
"esbuild": "^0.12.25",
"esbuild-node-externals": "^1.3.0",
"esbuild-plugin-decorator": "^0.1.1",
"rimraf": "^3.0.2",
"typescript": "^4.4.2"
},
"dependencies": {
"crypto-random-string": "^4.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"source-map-support": "^0.5.19",
"typeorm": "^0.2.37",
"billing-next": "^1.0.0"
},
"scripts": {
"dev": "node .",
"build": "node esbuild.config.js",
"migration:generate": "node esbuild.config.js & npx typeorm migration:generate -o -n",
"migration:run": "npx typeorm migration:run"
}
}