-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
{
"name": "household-inventory-system",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "rimraf dist && swc ./src -d dist",
"db:console": "docker compose exec postgres psql -h localhost -U postgres -d webapp_dev",
"rebuild:be": "docker compose build backend && docker compose rm --stop backend && docker compose up -d backend",
"start": "node dist/index.js",
"start:docker": "yarn build && node --inspect=0.0.0.0 dist/index.js"
},
"dependencies": {
"@prisma/client": "^3.14.0",
"express": "^4.18.1",
"knex": "^2.0.0",
"morgan": "^1.10.0",
"pg": "^8.7.3",
"typescript": "^4.6.4"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.186",
"@tsconfig/node16": "^1.0.2",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"prisma": "^3.14.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"type": "^2.6.0"
}
}