-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "express-ioc-ts-boilerplate",
"version": "1.0.0",
"description": "Express IOC TS Boilerplate.",
"main": "dist/app/server.js",
"scripts": {
"prebuild": "rm -rf dist/* && tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc && cp -rf package.json dist/package.json",
"prestart": "npm run build",
"start": "ts-node .",
"watch": "tsc-watch --project . --outDir ./dist --onSuccess \"ts-node . --log-level=verbose --log-flag=date\""
},
"author": "[email protected]",
"dependencies": {
"@barusu/chalk-logger": "0.0.35",
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.5",
"morgan": "^1.10.0",
"typescript-ioc": "^3.2.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.36",
"@types/morgan": "^1.9.1",
"ts-node": "^9.0.0",
"tsc": "^1.20150623.0",
"tsc-watch": "^4.2.9",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}