-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.95 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
54
55
56
57
58
59
60
61
62
{
"name": "piupiuwer-backend",
"version": "1.0.0",
"main": "src/shared/http/server.ts",
"repository": "https://github.com/TiagoMLucio/piupiuwer-backend.git",
"author": "TiagoMLucio <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc",
"dev:server": "ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --exit-child --ignore-watch node_modules src/shared/infra/http/server.ts"
},
"prisma": {
"schema": "src/shared/infra/prisma/schema.prisma"
},
"dependencies": {
"@prisma/client": "^4.1.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.5-lts.1",
"openapi-types": "^12.0.0",
"path": "^0.12.7",
"prisma": "^4.1.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0",
"tsyringe": "^4.7.0",
"uuid": "^8.3.2",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/node": "^7.12.17",
"@babel/plugin-proposal-class-properties": "^7.12.13",
"@babel/plugin-proposal-decorators": "^7.12.13",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.4",
"@types/uuidv4": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"prisma-aurora": "^1.3.9",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}