generated from shkvik/nodejs-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "nodejs_console",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --build",
"build:prod": "npm run build && npm prune --omit=dev",
"start:prod": "node dist/src/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"typeorm:generate": "typeorm-model-generator -h localhost -d postgres -u user -x password -e postgres -o ./src/pg_schema"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@types/cli-progress": "^3.11.6",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.42.0",
"typeorm-model-generator": "^0.4.6",
"typescript": "^5.5.4"
},
"dependencies": {
"@types/js-yaml": "^4.0.9",
"class-validator": "^0.14.1",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"js-yaml": "^4.1.0",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20"
}
}