-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.71 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.71 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
{
"name": "node-docker-nginx",
"version": "1.0.0",
"keywords": [],
"author": "Alpha Olomi <alphaolomi@gmail.com>",
"description": "node-docker-nginx",
"private": true,
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"make-docs":"apidoc -i src/api/routes/ -o docs/",
"dev": "nodemon",
"start": "node ./dist/www.js",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"dotenv": "^16.0.0",
"eslint": "^8.0.0",
"express": "^4.17.1",
"express-validator": "^6.11.1",
"inversify": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mysql2": "^2.2.5",
"passport": "^0.5.0",
"passport-jwt": "^4.0.0",
"raven-js": "^3.27.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0",
"sequelize-typescript": "^2.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.35",
"@types/express": "^4.17.12",
"@types/jest": "^27.0.0",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^16.0.0",
"@types/sequelize": "^4.28.9",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"apidoc": "^0.51.0",
"jest": "^27.0.1",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^27.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alphaolomi/node-docker-nginx.git"
},
"bugs": {
"url": "https://github.com/alphaolomi/node-docker-nginx/issues"
},
"homepage": "https://github.com/alphaolomi/node-docker-nginx#readme"
}