generated from alvarobianor/template-nodeJs-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
35
36
37
38
39
{
"name": "estruturstypescript",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev:server": "ts-node-dev --inspect --transpileOnly --ignore-watch node_modules src/app.ts",
"typeorm": "ts-node-dev ./node_modules/typeorm/cli.js"
},
"dependencies": {
"bcrypt": "^4.0.1",
"date-fns": "^2.12.0",
"eslint-import-resolver-typescript": "^2.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"pg": "^8.0.2",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24",
"uuidv4": "^6.0.7"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.3.9",
"@types/multer": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.27.1-alpha.19",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}