-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
{
"name": "express-typescript-template",
"version": "1.0.0",
"description": "This is a typescript template for express",
"main": "index.ts",
"scripts": {
"build": "tsc",
"dev": "$env:NODE_ENV=\"dev\" ts-node-dev --trace-warnings --abort-on-uncaught-exception --respawn --debug src/index.ts",
"start": "$env:NODE_ENV=\"prod\" ts-node-dev --respawn src/index.ts",
"test": "jest --colors --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sakib25800/express-typescript-template.git"
},
"author": "Sakibul Islam",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sakib25800/express-typescript-template/issues"
},
"homepage": "https://github.com/Sakib25800/express-typescript-template#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"chalk": "^4.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"joi": "^17.4.0",
"morgan": "^1.10.0",
"nanoid": "^3.1.23",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"ts-node-dev": "^1.1.6",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/morgan": "^1.9.2",
"@types/nanoid": "^3.0.0",
"@types/node": "^15.12.3",
"@types/uuid": "^8.3.0",
"@types/winston": "^2.4.4",
"prettier": "^2.3.1",
"trim-newlines": "^3.0.1",
"typescript": "^4.3.4"
}
}