-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "blog-nodejs",
"version": "0.0.1",
"description": "NodeJS Blog with TypeORM.",
"main": "src/index.ts",
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"scripts": {
"start": "nodemon src/index.ts",
"app:key": "ts-node src/commands/AppKeyGenerate.ts",
"typeorm": "typeorm-ts-node-commonjs"
},
"devDependencies": {
"@types/dompurify": "^3.0.2",
"@types/express": "^4.17.13",
"@types/jsdom": "^21.1.1",
"@types/node": "^16.11.10",
"@types/useragent": "^2.3.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/jsonwebtoken": "^8.5.8",
"@types/multer": "^1.4.7",
"@types/nodemailer": "^6.4.5",
"@types/uuid": "^9.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dompurify": "^3.0.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsdom": "^22.0.0",
"multer": "^1.4.5-lts.1",
"mysql": "^2.14.1",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.19",
"reflect-metadata": "^0.1.13",
"slugify": "^1.6.6",
"typeorm": "0.3.6",
"useragent": "^2.3.0",
"uuid": "^9.0.0"
}
}