-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "nodejs-prisma",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "tsnd --respawn -r tsconfig-paths/register --exit-child --transpile-only --inspect --ignore-watch node_modules src/shared/infra/http/server.ts",
"test": "jest",
"build": "tsc",
"start": "node dist/src/shared/infra/http/server.js"
},
"_moduleAliases": {
"@modules": "src/modules",
"@config": "src/config",
"@shared": "src/shared"
},
"dependencies": {
"@prisma/client": "^4.1.1",
"cuid": "^2.1.8",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"module-alias": "^2.2.2",
"pg": "^8.8.0",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^29.2.3",
"@types/module-alias": "^2.0.1",
"@types/node": "^18.6.2",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"prisma": "^4.1.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0"
}
}