-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
99 lines (99 loc) · 2.79 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
{
"name": "express-typeorm-rest-boilerplate",
"version": "0.4.3",
"description": "Boilerplate code to get started with building RESTful API Services",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "tsc -p .",
"dev": "nodemon -V --exec ts-node src/app.ts",
"mongodb": "mkdirp .mongodb && mongod --dbpath .mongodb",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "cross-env NODE_ENV=test TS_NODE=true jest --runInBand",
"seed": "ts-node -T commands/seed.ts",
"generate": "ts-node -T commands/generate.ts",
"semantic-release": "semantic-release"
},
"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",
"boilerplate",
"api",
"rest",
"jest",
"validation",
"mongodb"
],
"author": "Brian Min <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bymi15/express-typeorm-rest-boilerplate/issues"
},
"homepage": "https://github.com/bymi15/express-typeorm-rest-boilerplate#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"esm": "3.2.25",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongodb": "^3.6.2",
"reflect-metadata": "^0.1.13",
"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/express": "^4.17.8",
"@types/express-jwt": "0.0.42",
"@types/faker": "^5.1.2",
"@types/jest": "^26.0.14",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.11.2",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"commander": "^6.1.0",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.1.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"
}
}