-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.88 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "blog-service",
"version": "0.0.1",
"description": "blog-service project",
"type": "commonjs",
"scripts": {
"start": "ts-node src/index.ts",
"watch": "nodemon src/index.ts",
"typeorm": "typeorm-ts-node-commonjs",
"build": "tsc",
"lint": "eslint src/**/*.ts",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.192",
"@types/node": "^16.18.23",
"@types/node-cron": "^3.0.7",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"concurrently": "^8.0.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.7",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@nestjs/axios": "^2.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.2",
"@types/helmet": "^4.0.0",
"@types/jsonwebtoken": "^9.0.1",
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.3",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.2",
"express-rate-limit": "^6.7.0",
"express-validator": "^6.15.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"multer": "^1.4.5-lts.1",
"mysql": "^2.14.1",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.1.13",
"socket.io": "^4.6.1",
"swagger-ui-express": "^4.6.2",
"ts-node-dev": "^2.0.0",
"tsoa": "^5.1.1",
"typeorm": "0.3.12"
}
}