-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "devlog-backend",
"version": "1.13.4",
"description": "A minimal devlog service.",
"main": "dist/main",
"scripts": {
"build": "nest build",
"typeorm:dev": "ts-node ./node_modules/.bin/typeorm",
"typeorm:prd": "typeorm",
"cli:create-admin:dev": "ts-node ./src/cli/create-admin",
"cli:create-admin:prd": "node ./dist/cli/create-admin",
"run:dev": "cross-env NODE_ENV=development TYPEORM_ENTITIES=dist/db/entity/**/*.js TYPEORM_MIGRATIONS=dist/db/migration/**/*.js TYPEORM_SUBSCRIBERS=dist/db/subscriber/**/*.js nest start --debug --watch",
"run:prd": "cross-env NODE_ENV=production node dist/main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AcrylicShrimp/devlog-backend.git"
},
"keywords": [
"devlog",
"blog",
"nodejs",
"backend-service",
"markdown"
],
"author": "AcrylicShrimp",
"license": "MIT",
"bugs": {
"url": "https://github.com/AcrylicShrimp/devlog-backend/issues"
},
"homepage": "https://github.com/AcrylicShrimp/devlog-backend",
"dependencies": {
"@elastic/elasticsearch": "^7.10.0",
"@nestjs/common": "^7.6.5",
"@nestjs/core": "^7.6.5",
"@nestjs/elasticsearch": "^7.1.0",
"@nestjs/platform-express": "^7.6.5",
"aws-sdk": "^2.831.0",
"bcrypt": "^5.0.0",
"blurhash": "^1.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dompurify": "^2.0.17",
"dotenv": "^8.2.0",
"formidable": "^2.0.0-canary.20200504.1",
"got": "^11.8.3",
"got-fetch": "^4.0.0",
"helmet": "^4.4.1",
"highlight.js": "^10.4.1",
"jsdom": "^16.4.0",
"marked": "^1.2.7",
"mysql2": "^2.2.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"sharp": "^0.27.0",
"typeorm": "^0.2.30",
"validator": "^13.1.17"
},
"devDependencies": {
"@nestjs/cli": "^7.5.4",
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.9",
"@types/dompurify": "^2.2.1",
"@types/express": "^4.17.11",
"@types/jsdom": "^16.2.6",
"@types/marked": "^1.2.1",
"@types/node": "^14.14.22",
"@types/sharp": "^0.27.1",
"@types/validator": "^13.1.3",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"ts-loader": "^8.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}