This repository has been archived by the owner on Apr 19, 2023. It is now read-only.
generated from pishangujeniya/express-node-ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "express-node-ts-boilerplate",
"version": "1.0.0",
"description": "express-node-ts-boilerplate",
"main": "app/server.ts",
"scripts": {
"tsc": "tsc",
"dev": "ts-node-dev --respawn --transpileOnly ./server.ts",
"start": "node ./build/server.js",
"windows_timeout": "timeout /t 1 /nobreak",
"windows_clean": "rmdir /S /Q \"./build\"",
"windows_robocopy": "(robocopy \"./app/configs\" \"./build/app/configs\" /mir /NFL /NDL /NJH /NJS /NP /NS /NC) ^& exit 0",
"windows_create_build_dir": "mkdir \"./build/app/configs\"",
"linux_clean": "rm -r -f ./build",
"linux_copy_configs": "cp -a ./app/configs ./build/app/",
"linux_create_build_dir": "mkdir -p ./build/app/configs"
},
"repository": {
"type": "git",
"url": "https://github.com/pishangujeniya/node-ts-express-boilerplate.git"
},
"keywords": [
"NodeTs",
"Express",
"API",
"Boilerplate"
],
"author": "Pishang Ujeniya",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/bunyan": "^1.8.6",
"@types/cors": "^2.8.6",
"@types/fs-extra": "^8.0.1",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.0",
"@types/nodemailer": "^6.4.0",
"@types/request": "^2.48.5",
"@types/uuid": "^8.0.0",
"bcrypt": "^5.0.0",
"bunyan": "^1.8.12",
"cors": "^2.8.5",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"mysql2": "^2.1.0",
"nodemailer": "^6.4.6",
"promise": "^8.1.0",
"request": "^2.88.2",
"rotating-file-stream": "^2.1.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.9.3",
"urllib": "^2.35.0",
"util": "^0.12.3",
"uuid": "^8.1.0"
},
"devDependencies": {
"@types/express": "^4.17.6"
}
}