-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
96 lines (96 loc) · 3.29 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
90
91
92
93
94
95
96
{
"name": "express-typescript",
"version": "1.0.0",
"description": "Express typescript.",
"dependencies": {
"@types/glob": "^7.1.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/mailgen": "^2.0.5",
"@types/socket.io": "^2.1.13",
"@types/swagger-ui-express": "^4.1.3",
"@types/yargs": "^16.0.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"bullmq": "^1.46.4",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"class-validator-jsonschema": "^3.1.0",
"cors": "^2.8.5",
"cron-decorators": "^0.1.5",
"dotenv": "^8.6.0",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"glob": "^7.1.7",
"graphql": "^15.5.3",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mailgen": "^2.0.15",
"module-alias": "^2.2.2",
"multer": "^1.4.3",
"mysql2": "^2.3.0",
"nodemailer": "^6.6.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"routing-controllers-openapi": "^3.1.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.37",
"typeorm-seeding": "^1.6.1",
"typeorm-simple-query-parser": "^1.0.16",
"typeorm-typedi-extensions": "^0.4.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.1",
"@types/body-parser": "^1.19.1",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/faker": "^5.5.8",
"@types/jest": "^26.0.24",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^14.17.15",
"@types/nodemailer": "^6.4.4",
"@types/supertest": "^2.0.11",
"jest": "^27.1.1",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
},
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --exec './node_modules/.bin/ts-node' src/main.ts",
"start": "npm run build && NODE_ENV=production node ./dist/main.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",
"db:seed:production": "NODE_ENV=production ts-node -r ./fix-module-alias.js ./node_modules/typeorm-seeding/dist/cli.js seed",
"code:format": "prettier --write \"src/**/*.{ts,css,js,html}\"",
"code:check": "prettier --check \"src/**/*.{ts,css,js,html}\"",
"code:format:specific-file": "prettier --write ",
"test": "jest",
"cli": "ts-node -r ./fix-module-alias.js src/utils/cli.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/kutia-software-company/express-typescript-starter"
},
"keywords": [
"expressjs",
"express-typescript"
],
"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"
}