-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "typescript-template",
"version": "0.0.1",
"description": "Typescript template",
"main": "index.js",
"repository": "https://github.com/vincentmuriuki/special-train.git",
"author": "Vincent M.",
"license": "MIT",
"scripts": {
"watch": "nodemon ./src/index.ts",
"build": "tsc"
},
"dependencies": {
"@hapi/joi": "^15.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.2",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.17.2",
"helmet": "^5.0.2",
"jsonwebtoken": "^8.5.1",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.17.0",
"sequelize-cli": "^6.4.1",
"sequelize-typescript": "^2.1.3",
"umzug": "^2.3.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express-session": "^1.17.4",
"@types/hapi__joi": "^17.1.8",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/passport": "^1.0.7",
"@types/umzug": "^2.3.3",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}