This repository was archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.54 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.54 KB
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
{
"name": "nodejs-realtime-rest-api",
"version": "0.0.0-semantic-release",
"description": "NodeJS (Realtime REST API) using NodeJS, TypeScript, Express, SocketIO, Swagger, CI/CD and more",
"keywords": [
"NodeJS",
"TypeScript",
"Express",
"SocketIO",
"Swagger",
"CI/CD",
"REST",
"Realtime"
],
"author": "Developer Place <developerplace@validation.global>",
"contributors": [
{
"name": "Alexander Daza",
"email": "root@alexanderdaza.com",
"url": "https://www.alexanderdaza.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/developerplace/nodejs-realtime-rest-api.git"
},
"license": "Apache-2.0",
"homepage": "https://github.com/developerplace/nodejs-realtime-rest-api",
"main": "dist/app.js",
"types": "dist/app.d.ts",
"scripts": {
"clean": "rm -rf dist docs logs",
"build": "tsc",
"start": "npm run build && node ./dist/src/app.js",
"dev": "./node_modules/nodemon/bin/nodemon.js",
"dev:ts-node": "ts-node ./src/app.ts",
"test": "node node_modules/mocha/bin/mocha --require ts-node/register test/*.test.ts --reporter spec",
"lint": "eslint --ext ts . package.json",
"lint:fix": "eslint --ext ts --fix . package.json",
"prettier": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"docs": "typedoc --exclude \"**/*+(index|.spec|.test|.e2e).ts\"",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"npm-publish": "npm publish",
"prepare": "husky install"
},
"dependencies": {
"bcrypt": "5.0.1",
"body-parser": "1.19.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"dotenv": "10.0.0",
"express": "^4.17.1",
"express-redis-cache": "^1.1.3",
"express-session": "1.17.2",
"express-socket.io-session": "^1.3.5",
"express-validator": "6.13.0",
"folder-logger": "1.0.9",
"helmet": "^4.6.0",
"jwt-simple": "0.5.6",
"moment": "2.29.1",
"mongoose": "6.0.12",
"socket.io": "^4.3.1",
"validator": "13.7.0"
},
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/bcrypt": "5.0.0",
"@types/body-parser": "1.19.1",
"@types/chai": "^4.2.22",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.12",
"@types/dotenv": "8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "1.17.4",
"@types/express-validator": "3.0.0",
"@types/helmet": "^4.0.0",
"@types/jwt-simple": "0.5.33",
"@types/mocha": "^9.0.0",
"@types/moment": "2.13.0",
"@types/mongoose": "5.11.97",
"@types/node": "^16.11.6",
"@types/socket.io": "^3.0.2",
"@types/validator": "13.6.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chai": "^4.3.4",
"cross-spawn": "^7.0.3",
"del": "^6.0.0",
"dotup-ts-git-wrapper": "^1.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"gh-pages": "^3.2.3",
"gulp": "^4.0.2",
"gulp-gh-pages": "^0.5.4",
"gulp-mocha": "^8.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-tslint": "^8.1.4",
"gulp-typedoc": "^3.0.1",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.22.7",
"typescript": "^4.4.4"
}
}