This repository has been archived by the owner on Nov 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.28 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
{
"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": "h0lybyte, Ziggy, LongTesla",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint src/server.ts",
"postinstall": "chmod +x ./scripts/dev.sh",
"setup-actions": "chmod +x ./scripts/setup-github-actions.sh; ./scripts/setup-github-actions.sh",
"build": "tsc",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts",
"dev": "./scripts/dev.sh",
"dev-server": "NODE_ENV=development nodemon",
"ts-node-server": "ts-node src/server.ts",
"start": "node dist/src/server.js",
"test": "jest",
"fix-lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.9",
"bcrypt": "^5.0.1",
"body-parser": "1.20.0",
"compression": "1.7.4",
"dotenv": "16.0.2",
"express": "4.18.1",
"joi": "17.6.0",
"mongoose": "6.5.5",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-ui-express": "4.5.0",
"winston": "3.8.1",
"winston-transport": "4.5.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "1.7.2",
"@types/express": "4.17.13",
"@types/jest": "^28.1.6",
"@types/joi": "^17.2.3",
"@types/node": "17.0.21",
"@types/passport": "^1.0.9",
"@types/passport-jwt": "^3.0.6",
"@types/supertest": "2.0.12",
"@types/swagger-ui-express": "4.1.3",
"@typescript-eslint/eslint-plugin": "5.30.3",
"@typescript-eslint/parser": "5.30.3",
"eslint": "8.19.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"jest": "28.1.2",
"jest-express": "1.12.0",
"nodemon": "2.0.18",
"supertest": "6.2.4",
"ts-jest": "28.0.5",
"ts-node": "10.8.2",
"typescript": "4.7.4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/sidhantpanda/docker-express-typescript-boilerplate/issues"
},
"homepage": "https://github.com/sidhantpanda/docker-express-typescript-boilerplate#readme"
}