-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.4 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
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Projeto-MigoC2/backend.git",
"license": "MIT",
"dependencies": {
"@prisma/client": "4.6.1",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"swagger-ui-express": "^4.5.0",
"tsyringe": "^4.7.0",
"typeorm": "^0.3.7",
"uuid": "^8.3.2"
},
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files",
"dev": "ts-node-dev --transpile-only --ignore-watch node_modules --respawn src/server.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js",
"ddev": "ts-node-dev --poll --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/node": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.7.14",
"@types/swagger-ui-express": "^4.1.3",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"prisma": "^4.6.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}