-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.44 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "order-self-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/infrastructure/server.js",
"dev": "tsx watch src/infrastructure/server.ts",
"build": "npx tsup src",
"test": "vitest --run --coverage --passWithNoTests",
"test:watch": "vitest --watch",
"lint": "eslint . --ext .ts",
"docker:dev": "docker compose -f docker-compose-dev.yml up -d",
"docker:dev:build": "docker compose -f docker-compose-dev.yml build --no-cache",
"docker:dev:down": "docker compose -f docker-compose-dev.yml down",
"prisma:migrate": "npx prisma migrate dev",
"prisma:migrate:apply": "npx prisma migrate deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.16.0",
"axios": "^1.5.0",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.16",
"uuid": "^9.0.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/uuid": "^9.0.2",
"@vitest/coverage-v8": "^0.32.0",
"eslint": "^8.42.0",
"prisma": "^4.16.0",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.1.3",
"vitest": "^0.32.0"
},
"engines": {
"node": "16.20.1"
},
"prettier": {
"tabWidth": 4,
"singleQuote": true
}
}