-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.54 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": "my-project",
"version": "1.0.0",
"main": "server.ts",
"license": "MIT",
"scripts": {
"build": "set NODE_ENV=production && tsc",
"test": "set NODE_ENV=dev && jest",
"typeorm": "ts-node-dev -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"start": "ts-node src/shared/infra/http/server.ts",
"dev:server": "set NODE_ENV=dev && ts-node-dev -r tsconfig-paths/register --inspect --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"factory.ts": "^0.5.2",
"faker": "^5.5.3",
"pg": "^8.6.0",
"reflect-metadata": "^0.1.13",
"supertest": "^6.1.4",
"ts-node-dev": "^1.1.6",
"tsyringe": "^4.5.0",
"typeorm": "^0.2.34",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-typescript": "^7.14.5",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.12",
"@types/faker": "^5.5.7",
"@types/jest": "^26.0.24",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.1-alpha.0",
"babel-jest": "^27.0.6",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.0.6",
"sqlite3": "^5.0.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
}
}