-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 4.08 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "express-typeorm-rest-boilerplate",
"version": "0.4.2",
"description": "Boilerplate code to get started with building RESTful API Services",
"main": "dist/app.js",
"scripts": {
"start": "cross-env NODE_ENV=production node dist/app.js",
"build": "tsc -p .",
"dev": "nodemon -V --exec ts-node src/app.ts",
"build-dev": "tsc -p . && node dist/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "cross-env NODE_ENV=test TS_NODE=true jest --runInBand",
"seed-bike": "ts-node -T commands/seed_bike.ts",
"seed-bike-station": "ts-node -T commands/seed_bike_on_station.ts",
"seed-ride": "ts-node -T commands/seed_ride.ts",
"seed-user": "ts-node -T commands/seed_user.ts",
"semantic-release": "semantic-release",
"generate-migration": "npx ts-node node_modules/.bin/typeorm migration:generate -n newMigration",
"generate-migration:prod": "cross-env NODE_ENV=production npx ts-node node_modules/.bin/typeorm migration:generate -n newMigration",
"generate-migration:win": "npx ts-node -r . node_modules\\typeorm\\cli.js migration:generate -n newMigration",
"generate-migration:win-prod": "cross-env NODE_ENV=production npx ts-node -r . node_modules\\typeorm\\cli.js migration:generate -n newMigration",
"migrate": "npx ts-node node_modules/.bin/typeorm migration:run",
"migrate:prod": "cross-env NODE_ENV=production npx ts-node node_modules/.bin/typeorm migration:run",
"migrate:win": "npx ts-node -r . node_modules\\typeorm\\cli.js migration:run",
"migrate:win-prod": "cross-env NODE_ENV=production npx ts-node -r . node_modules\\typeorm\\cli.js migration:run"
},
"repository": {
"type": "git",
"url": "https://github.com/bymi15/express-typeorm-rest-boilerplate.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"keywords": [
"express-typeorm-rest-boilerplate",
"javascript",
"typescript",
"nodejs",
"express",
"typeorm",
"typedi",
"api",
"rest",
"jest",
"validation",
"mariaDB"
],
"author": "Vécolo",
"license": "MIT",
"bugs": {
"url": "https://github.com/vecolo-project/API"
},
"homepage": "https://github.com/vecolo-project/API",
"dependencies": {
"@sendgrid/mail": "^7.4.5",
"bcrypt": "^5.0.0",
"celebrate": "^13.0.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"date-fns": "^2.22.1",
"dotenv": "^8.2.0",
"esm": "3.2.25",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-jwt": "^6.0.0",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mysql2": "^2.2.5",
"node-fetch": "^2.6.1",
"node-schedule": "^2.0.0",
"pdfkit": "^0.12.1",
"reflect-metadata": "^0.1.13",
"sendgrid": "^5.2.3",
"typedi": "^0.8.0",
"typeorm": "^0.2.26",
"typeorm-typedi-extensions": "^0.2.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.7",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.8",
"@types/express-fileupload": "^1.1.6",
"@types/express-jwt": "0.0.42",
"@types/faker": "^5.1.2",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.2",
"@types/node-fetch": "^2.5.11",
"@types/node-schedule": "^1.3.2",
"@types/pdfkit": "^0.11.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.0",
"inquirer": "^8.0.0",
"jest": "^26.4.2",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.4",
"pluralize": "^8.0.0",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2",
"supertest": "^5.0.0",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}