-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 880 Bytes
/
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
{
"name": "technoparkdb",
"version": "1.0.0",
"repository": {
"url": "https://github.com/Jaxa9697/TechnoparkDB"
},
"description": "Test application for Technopark DB subject",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc -b ./tsconfig.json",
"start": "node ./dist/index.js",
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"prod": "tsc && node ./dist/index.js",
"lint": "tslint 'src/**/*.ts'"
},
"author": "Tulforov Jahongir",
"license": "ISC",
"devDependencies": {
"@types/morgan": "^1.7.35",
"@types/pg": "^7.4.14",
"@types/express": "^4.16.1",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3.3333"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"morgan": "^1.9.1",
"pg": "^7.9.0"
}
}