-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.27 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
{
"name": "openrnc",
"version": "1.0.0",
"description": "",
"main": "./src/server.js",
"scripts": {
"build": "tsc",
"dev": "tsc-watch --onSuccess \"node ./dist/server.js\"",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^8.2.0",
"async": "^3.2.4",
"axios": "^1.5.1",
"chalk": "^4.1.2",
"chalk-animation": "^2.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"helmet": "^7.0.0",
"http": "^0.0.1-security",
"ioredis": "^5.3.2",
"jalali-moment": "^3.3.11",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"kafkajs": "^2.2.4",
"md5": "^2.3.0",
"mongoose": "^7.6.3",
"morgan": "^1.10.0",
"nanoid": "^5.0.2",
"swagger-ui-express": "^5.0.0",
"tsc-watch": "^6.0.4"
},
"devDependencies": {
"@types/async": "^3.2.22",
"@types/cors": "^2.8.15",
"@types/express": "^4.17.20",
"@types/jest": "^29.5.6",
"@types/jsonwebtoken": "^9.0.4",
"@types/md5": "^2.3.4",
"@types/node": "^20.8.8",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"nock": "^13.3.6",
"prettier": "3.0.3",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"lint-staged": {
"apps/**/*.{ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write",
"eslint",
"stop-only --file"
],
"packages/**/*.{ts,tsx,json}": [
"prettier --ignore-path ./.prettierignore --write",
"eslint",
"stop-only --file"
],
"providers/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write",
"eslint",
"stop-only --file"
],
"libs/**/*.{ts,js,json}": [
"prettier --ignore-path ./.prettierignore --write",
"eslint",
"stop-only --file"
]
}
}