-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.53 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.53 KB
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
43
44
45
46
47
{
"name": "l3-express-eidexchange-application",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "tsc && npm run copy-files",
"copy-files": "copyfiles -u 1 src/views/**/* dist && copyfiles -u 1 src/public/**/* dist",
"start": "bun dist/server.js",
"dev": "nodemon",
"tailwind": "npx tailwindcss -i ./src/public/css/input.css -o ./src/public/css/main.css --watch",
"start:prod":"npm run build && npm run start"
},
"author": "Sabik Abtahee",
"license": "MIT",
"_moduleAliases": {
"config": "dist/utils/config.js"
},
"description": "",
"dependencies": {
"@azure/communication-email": "^1.0.0",
"body-parser": "^1.20.3",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-handlebars": "^8.0.1",
"module-alias": "^2.2.3",
"mongoose": "^8.9.2",
"uuid": "^11.0.3",
"validator": "^13.12.0"
},
"devDependencies": {
"@mightykraken/l0-node-linter-config": "^1.10.9",
"@tailwindcss/forms": "^0.5.9",
"@types/body-parser": "^1.19.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@types/express-handlebars": "^5.3.1",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.10.2",
"@types/validator": "^13.12.2",
"copyfiles": "^2.4.1",
"nodemon": "^3.1.9",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0"
}
}