-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 840 Bytes
/
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
{
"name": "nodejs-typescript-prisma",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"start": "tsnd --inspect --respawn --transpile-only --ignore-watch node_modules --exit-child src/index.ts",
"test": "vitest ./tests"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/express": "^5.0.0",
"@types/module-alias": "^2.0.4",
"@types/node": "^22.10.2",
"@types/swagger-ui-express": "^4.1.6",
"prisma": "^6.1.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@prisma/client": "^6.1.0",
"axios": "^1.6.7",
"express": "^4.21.2",
"module-alias": "^2.2.3",
"swagger-ui-express": "^5.0.0"
}
}