-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 892 Bytes
/
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": "node",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only src/server.ts",
"start": "ts-node src/server.ts",
"lint": "eslint src --ext .ts",
"typeorm": "ts-node-dev node_modules/.bin/typeorm"
},
"dependencies": {
"dotenv": "^14.2.0",
"express": "^4.17.2",
"joi": "^17.5.0",
"nodemailer": "^6.7.2",
"pg": "^8.7.1",
"typeorm": "^0.2.41",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/nodemailer": "^6.4.4",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"prettier": "^1.19.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
}
}