-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "trips-backend",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"start:dev": "concurrently \"yarn run watch:compile\" \"yarn run watch:dev\"",
"watch:compile": "swc src -w --out-dir dist",
"watch:dev": "nodemon --watch \"dist/**/*\" -e js dist/app.js",
"build": "swc src -d dist",
"start": "NODE_ENV=production node dist/app.js",
"test:unit": "jest",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.66",
"@swc/jest": "^0.2.26",
"axios": "^1.4.0",
"body-parser": "^1.20.2",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"inversify": "^6.0.1",
"jest-mock-extended": "^3.0.4",
"mongodb": "^5.6.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/validator": "^13.7.17",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chokidar": "^3.5.3",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"typescript": "^5.1.3"
}
}