-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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": "notes-app-express",
"version": "1.0.0",
"main": "./dist/src/app.js",
"scripts": {
"build": "npx tsc",
"migrate": "node-pg-migrate",
"start": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/app.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@types/body-parser": "^1.19.2",
"@types/multer": "^1.4.7",
"amqplib": "^0.10.3",
"autobind-decorator": "^2.4.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.1",
"multer": "^1.4.5-lts.1",
"node-pg-migrate": "^6.2.2",
"pg": "^8.11.2",
"reflect-metadata": "^0.1.13",
"shortid": "^2.2.16",
"tsyringe": "^4.8.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/shortid": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"eslint": "^8.46.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}