-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "application",
"version": "1.0.0",
"description": "IT Asset Management Platform",
"main": "src/main.ts",
"author": "Dalana Dharmathilake",
"scripts": {
"start": "node dist/main",
"start:watch": "nodemon --delay 1 dist/main",
"build:watch": "tsc -w",
"build": "tsc",
"debug": "export DEBUG=* && npm run start",
"migrations:generate": "node ./dist/lib/db/generate-migration.js",
"test": "echo \"Error: no test specified\" && exit 1",
"bundle:js": "esbuild --bundle ./public/js/main.js --outfile=./public/main.bundle.js --minify --watch --format=esm --sourcemap --target=es6"
},
"license": "ISC",
"dependencies": {
"@mikro-orm/core": "^4.5.9",
"@mikro-orm/migrations": "^4.5.9",
"@mikro-orm/postgresql": "^4.5.9",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"express": "^5.0.0-alpha.8",
"joi": "^17.4.2",
"nodemailer": "^6.7.0",
"nunjucks": "^3.2.3",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"nodemon": "^2.0.13"
}
}