-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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": "nodeserver",
"version": "1.0.0",
"description": "Simple server",
"main": "api/server.ts",
"scripts": {
"start": "node --inspect=5858 -r ts-node/register api\\server.ts",
"start:watch": "nodemon",
"build": "tsc",
"copyFiles": "copyfiles -f \"./api/**/*.yaml\" dist"
},
"author": "Adarsh Agarwal",
"license": "ISC",
"dependencies": {
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.6",
"@types/express-fileupload": "^1.1.2",
"@types/request": "^2.48.4",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"fs-extra": "^8.1.0",
"js-yaml": "^3.13.1",
"oas-tools": "^2.1.7",
"pg": "^7.18.2",
"pg-native": "^3.0.0",
"request": "^2.88.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.2",
"@types/node": "^13.7.5",
"@types/pg": "^7.14.1",
"copyfiles": "^2.2.0",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.2"
}
}