-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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
{
"name": "modrab-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "build && node dist/index.js",
"start:dev": "ts-node-dev --files -r tsconfig-paths/register src/index.ts",
"build": "rimraf dist && tsc && tsc-alias",
"lint": "eslint . --ext .ts",
"seed": "ts-node-dev --files -r tsconfig-paths/register src/seeder/seed.ts",
"seed:reset": "ts-node --files -r tsconfig-paths/register src/seeder/seed.ts --reset"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.8",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/glob": "^8.1.0",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-joi-validation": "^5.0.1",
"glob": "^10.3.10",
"http": "^0.0.1-security",
"i": "^0.3.7",
"joi": "^17.12.1",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.0.3",
"npm": "^10.2.5",
"path": "^0.12.7",
"swagger-ui-express": "^5.0.0",
"tsc-alias": "^1.8.8",
"uuid": "^10.0.0"
}
}