-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.25 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
{
"name": "smart-manage-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18"
},
"scripts": {
"dev": "ts-node-dev --transpile-only src/index.ts",
"build": "tsc",
"typeorm": "ts-node-dev node_modules/.bin/typeorm"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/jsonwebtoken": "^9.0.3",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.7.2",
"swagger-ui-express": "^5.0.0",
"typeorm": "^0.3.17",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.18",
"@types/node": "^20.8.0",
"@types/socket.io": "^3.0.2",
"@types/swagger-ui-express": "^4.1.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"eslint": "^8.50.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
}
}