-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "clean-arquitecture",
"version": "1.0.0",
"main": "index.js",
"author": "Daniel Felizardo <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint src --ext .ts,.js --fix",
"start": "ts-node -r tsconfig-paths/register src/shared/infra/http/server.ts",
"dev": "tsnd -r tsconfig-paths/register --transpile-only --ignore-watch node_modules src/shared/infra/http/server.ts"
},
"dependencies": {
"apollo-server-express": "^2.14.2",
"express": "^4.17.2",
"graphql": "^14.6.0",
"mysql2": "^2.3.3",
"typeorm": "^0.2.41"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.4"
}
}