-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "backend-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files"
},
"keywords": [],
"author": "Rodrigo Lemos",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/node": "^14.11.8",
"babel-plugin-module-resolver": "^4.0.0",
"nodemon": "^2.0.5",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@types/cors": "^2.8.8",
"@types/express": "^4.17.8",
"babel-plugin-transform-metadata": "^4.0.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"pg": "^8.4.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.28"
}
}