-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.83 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "express-typescript",
"version": "1.0.0",
"description": "Express typescript.",
"dependencies": {
"@types/cron": "^1.7.2",
"@types/glob": "^7.1.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/mailgen": "^2.0.3",
"@types/socket.io": "^2.1.13",
"@types/swagger-ui-express": "^4.1.2",
"@types/yargs": "^16.0.1",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bullmq": "^1.18.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"class-validator-jsonschema": "^3.0.1",
"cors": "^2.8.5",
"cron-decorators": "^0.1.5",
"cron-time-generator": "^1.2.0",
"dotenv": "^8.2.0",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"express-validator": "^6.10.0",
"glob": "^7.1.6",
"graphql": "^15.5.0",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mailgen": "^2.0.14",
"module-alias": "^2.2.2",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.5.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.0.0",
"socket-controllers": "0.0.5",
"socket.io": "^3.0.0",
"swagger-ui-express": "^4.1.6",
"type-graphql": "^1.1.1",
"typedi": "^0.10.0",
"typeorm": "^0.2.32",
"typeorm-seeding": "^1.6.1",
"typeorm-typedi-extensions": "^0.4.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/faker": "^5.5.1",
"@types/module-alias": "^2.0.0",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.41",
"@types/nodemailer": "^6.4.1",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --exec './node_modules/.bin/ts-node' src/index.ts",
"start": "npm run build && NODE_ENV=production node ./dist/index.js",
"build": "tsc",
"typeorm": "ts-node -r ./fix-module-alias.js ./node_modules/.bin/typeorm",
"make:migration": "npm run typeorm -- migration:create -n",
"migrate": "npm run typeorm -- migration:run",
"seed:config": "ts-node -r ./fix-module-alias.js ./node_modules/typeorm-seeding/dist/cli.js config",
"db:seed": "ts-node -r ./fix-module-alias.js ./node_modules/typeorm-seeding/dist/cli.js seed"
},
"repository": {
"type": "git",
"url": "https://github.com/kutia-software-company/express-typescript-starter"
},
"keywords": [
"expressjs",
"express-typescript"
],
"bin": {
"cli": "cli/index.ts"
},
"author": "Gentrit Abazi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kutia-software-company/express-typescript-starter/issues"
},
"homepage": "https://github.com/kutia-software-company/express-typescript-starter#readme"
}