-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "naam-server",
"version": "0.0.0",
"description": "TypeScript + Routing Controllers + Express API Server",
"author": "",
"license": "ISC",
"scripts": {
"start": "npm run build && cross-env NODE_ENV=prod node dist/server.js",
"dev": "cross-env NODE_ENV=dev nodemon",
"build": "rm -rf dist/ && swc src -d dist --source-maps --copy-files",
"build:tsc": "rm -rf dist/ && tsc && tsc-alias",
"test": "jest --forceExit --detectOpenHandles",
"lint": "eslint --ignore-path .gitignore --ext .ts src",
"lint:fix": "npm run lint -- --fix && prettier --write src/**/*.ts",
"pre-commit": "lint-staged"
},
"jest-junit": {
"suiteNameTemplate": "{filepath}",
"outputDirectory": "./coverage",
"outputName": "junit.xml"
},
"dependencies": {
"@mikro-orm/core": "^6.2.7",
"@mikro-orm/postgresql": "^6.2.7",
"@mikro-orm/reflection": "^6.2.7",
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"envalid": "^8.0.0",
"express": "^4.18.1",
"helmet": "^7.1.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"typedi": "^0.10.0",
"uuid": "^9.0.1",
"winston": "^3.8.1",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.7.2",
"@swc/cli": "^0.3.12",
"@swc/core": "^1.2.220",
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.3",
"@types/node": "^20.12.7",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.2",
"node-config": "^0.0.2",
"node-gyp": "^10.1.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"supertest": "^6.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.0",
"tsconfig-paths": "^4.0.0",
"typescript": "^5.4.5"
}
}