-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "express-api",
"version": "1.0.0",
"description": "Express API w/ TypeScript",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/mariovyord/express-ts-api.git"
},
"bugs": {
"url": "https://github.com/mariovyord/express-ts-api/issues"
},
"homepage": "https://github.com/mariovyord/express-ts-api#readme",
"scripts": {
"dev": "nodemon -L src/index.ts",
"debug": "set DEBUG=express:* & nodemon src/index.ts --inspect=9001",
"debug-docker": "nodemon --exec 'node --inspect=0.0.0.0:9229 --require ts-node/register src/index.ts'",
"build": "rimraf dist && tsc",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test:coverage": "jest --coverage --detectOpenHandles",
"test": "jest"
},
"author": "Mario Yordanov",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-handlebars": "^7.1.2",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"reflect-metadata": "^0.2.1",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.19",
"typeorm-extension": "^3.2.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/supertest": "^2.0.16",
"@types/swagger-ui-express": "^4.1.6",
"eslint": "^8.55.0",
"eslint-plugin-jest": "^27.6.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"superagent": "^8.1.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">20.0.0"
}
}