-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "repository-pattern-ts-express",
"version": "1.0.0",
"description": "",
"main": "dist/src/server.js",
"scripts": {
"build": "npx tsc && pm2 update",
"start": "npm run prod",
"prod": "export NODE_ENV=production || set NODE_ENV=production && npx tsc && pm2 start ./dist/src/server.js --ignore-watch=node_modules && pm2 save",
"dev": "export NODE_ENV=development || set NODE_ENV=development && nodemon src/server.ts",
"test": "jest --testPathPattern unit"
},
"jest": {
"preset": "ts-jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lamaparbat/repository-pattern-ts-express.git"
},
"author": "Parbat Lama",
"license": "ISC",
"bugs": {
"url": "https://github.com/lamaparbat/repository-pattern-ts-express/issues"
},
"homepage": "https://github.com/lamaparbat/repository-pattern-ts-express#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.4.5",
"@types/supertest": "^2.0.12",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/cors": "^2.8.14",
"@types/mongoose": "^5.11.97",
"awilix": "^8.0.1",
"awilix-express": "^8.0.0",
"cors": "^2.8.5",
"helmet": "^7.0.0",
"joi": "^17.10.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.1.0",
"mongoose": "^7.5.2",
"nodemon": "^3.0.1",
"pm2": "^5.3.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.1"
}
}