-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.35 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": "server",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node .",
"prestart": "npm run build",
"server:watch": "ts-node-dev --respawn --transpile-only src/index.ts",
"prebuild": "npm run lint",
"lint:fix": "eslint --cache --ext .ts . --fix",
"lint": "eslint --cache --ext .ts .",
"test:unit": "jest --config=jest.config.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/config": "^3.3.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"jest": "^28.1.3",
"supertest": "^6.2.4",
"ts-jest": "^28.0.8",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.2"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"class-transformer3": "npm:class-transformer@^0.3.1",
"class-validator12": "npm:class-validator@^0.12.2",
"config": "^3.3.7",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-http-context": "^1.2.4",
"log4js": "^6.6.1",
"multer": "^1.4.5-lts.1",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.9.0",
"swagger-ui-express": "^4.5.0"
}
}