-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 KB
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
51
52
53
{
"name": "thinklink_api",
"version": "1.0.0",
"main": "index.ts",
"type": "commonjs",
"repository": "https://github.com/Mesta-Tech/thinklink-api.git",
"author": "Tolga Berk Ordanuç <tolgaberkordanuc@gmail.com>",
"license": "MIT",
"private": true,
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"helmet": "^4.2.0",
"http-status-codes": "^2.1.4",
"jest": "^26.6.3",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.29",
"yup": "^0.32.8"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/helmet": "^4.0.0",
"@types/http-status-codes": "^1.2.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5",
"@types/node": "^8.0.29",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"eslint": "^7.15.0",
"nodemon": "^2.0.6",
"ts-node": "3.3.0",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"start": "ts-node index.ts",
"lint": "eslint --fix",
"watch": "nodemon -e ts -w ./src -x npm run watch:serve",
"watch:serve": "ts-node --inspect index.ts",
"dev": "ts-node-dev index.ts"
}
}