-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.85 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
{
"name": "express-typescript-boilerplate",
"version": "1.0.0",
"description": "A minimalist TypeScript-Express boilerplate",
"repository": {
"type": "git",
"url": "git+https://github.com/sidhantpanda/express-typescript-boilerplate.git"
},
"keywords": [
"TypeScript",
"express",
"nodejs",
"boilerplate",
"eslint"
],
"author": "Sidhant Panda",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src/server.ts",
"postinstall": "chmod +x ./scripts/dev.sh",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "./scripts/dev.sh",
"start": "node dist/server.js",
"test": "jest",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"migrate": "ts-node ./node_modules/typeorm/cli.js migration:run"
},
"dependencies": {
"@hapi/joi": "17.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "1.19.0",
"class-validator": "^0.12.2",
"compression": "1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "8.2.0",
"ejs": "^3.1.2",
"ejs-locals": "^1.0.2",
"express": "4.17.1",
"express-status-monitor": "^1.3.2",
"filesize": "^6.1.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.7",
"mongoose": "5.9.10",
"nodemon": "2.0.3",
"reflect-metadata": "^0.1.13",
"snyk": "^1.316.1",
"swagger-ui-express": "4.1.4",
"typeorm": "^0.2.24",
"winston": "3.2.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.6",
"@types/helmet": "0.0.46",
"@types/jsonwebtoken": "^8.3.9",
"@types/compression": "1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/dotenv": "8.2.0",
"@types/ejs": "^3.0.2",
"@types/ejs-locals": "0.0.32",
"@types/express": "4.17.1",
"@types/express-status-monitor": "^1.2.0",
"@types/filesize": "^5.0.0",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "25.2.1",
"@types/mongoose": "5.7.12",
"@types/node": "13.13.2",
"@types/supertest": "2.0.8",
"@types/swagger-ui-express": "4.1.2",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"jest": "25.4.0",
"jest-express": "1.12.0",
"mockingoose": "2.13.2",
"supertest": "4.0.2",
"ts-jest": "25.4.0",
"typescript": "3.8.3"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sidhantpanda/docker-express-typescript-boilerplate/issues"
},
"homepage": "https://github.com/sidhantpanda/docker-express-typescript-boilerplate#readme",
"snyk": true
}