-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.51 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
{
"name": "shortlink-the-shortest-url",
"version": "1.0.0",
"main": "index.js",
"author": "brunohsweber <contato@brunoweber.com.br>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=prod tsc",
"dev": "ts-node-dev -r tsconfig-paths/register --poll --inspect --transpile-only --ignore-watch node_modules --respawn src/shared/infra/http/server.ts",
"test": "jest",
"migrate:dev": "npx prisma migrate dev",
"migrate:deploy": "npx prisma migrate deploy",
"start:prod": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/src/shared/infra/http/server.js"
},
"prisma": {
"schema": "src/shared/infra/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-async-errors": "^3.1.1",
"prisma": "^3.11.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.2.2",
"swagger-ui-express": "^4.3.0",
"tsyringe": "^4.6.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@types/swagger-ui-express": "^4.1.3",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.0",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
}
}