-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "noderest",
"version": "1.0.0",
"description": "Express server",
"main": "build/index.js",
"author": "Phuti JJ Lekgwara",
"license": "MIT",
"private": true,
"scripts": {
"build": "npx tsc",
"start": "node build/index.js",
"dev": "ts-node-dev --respawn --transpile-only index.ts"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"@types/express": "^4.17.21",
"@types/ip": "^1.1.3",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"express-openapi-validator": "^5.1.3",
"ip": "^2.0.1",
"mongodb": "^6.8.0",
"mongoose": "^8.4.4",
"socket.io": "^4.7.5",
"swagger-routes-express": "^3.3.2",
"swagger-ui-express": "^5.0.0"
}
}