-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.83 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.83 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "zanon.dev",
"version": "1.0.0",
"description": "zanon.dev is my personal website where I blog about programming topics and create simple tutorials.",
"main": "index.ts",
"scripts": {
"start": "gulp",
"test": "jest -i --watch",
"test-deploy": "ts-node src/scripts/test-deploy.ts",
"test-backend": "ts-node src/scripts/test-backend.ts",
"build": "gulp build",
"deploy-site": "gulp deploy",
"deploy-lambda": "serverless deploy",
"offline": "serverless offline",
"new-post": "ts-node src/scripts/new-post.ts",
"publish-post": "ts-node src/scripts/publish-post.ts",
"new-snippet": "ts-node src/scripts/new-snippet.ts",
"scale-img": "ts-node src/scripts/scale-img.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegozanon/zanon.dev.git"
},
"keywords": [
"blog"
],
"author": "Diego Zanon",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegozanon/zanon.dev/issues"
},
"homepage": "https://github.com/diegozanon/zanon.dev#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/tests/**/*.ts"
],
"watchPathIgnorePatterns": [
"<rootDir>/site/dist/"
],
"testRunner": "jest-circus/runner",
"globals": {
"ts-jest": {
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
}
},
"dependencies": {
"aws-sdk": "^2.773.0",
"cheerio": "^1.0.0-rc.6",
"cli-select": "1.0.2",
"get-github-code": "^1.0.4",
"html-minifier-terser": "^5.1.1",
"js-yaml": "^3.13.1",
"marked": "^2.0.1",
"mime-types": "^2.1.27",
"moment": "^2.24.0",
"pkg-dir": "^4.2.0",
"prismjs": "^1.23.0",
"slugify": "^1.3.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"@types/cors": "^2.8.7",
"@types/fancy-log": "^1.3.1",
"@types/fs-extra": "^9.0.1",
"@types/gulp": "^4.0.17",
"@types/gulp-connect": "^5.0.3",
"@types/gulp-imagemin": "^7.0.2",
"@types/gulp-rename": "0.0.33",
"@types/gulp-replace": "1.1.0",
"@types/gulp-sass": "^5.0.4",
"@types/gulp-sourcemaps": "0.0.32",
"@types/html-minifier-terser": "^5.1.1",
"@types/jest": "^24.0.18",
"@types/js-yaml": "^3.12.5",
"@types/marked": "^1.1.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^12.7.2",
"@types/prismjs": "^1.16.4",
"@types/sharp": "^0.26.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"axios": "^0.21.1",
"bufferutil": "^4.0.1",
"canvas": "^3.0.1",
"cors": "^2.8.5",
"esbuild": "^0.12.20",
"eslint": "^6.8.0",
"fancy-log": "^1.3.3",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"gulp": "^5.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-connect": "^5.7.0",
"gulp-imagemin": "^7.1.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.1.4",
"gulp-sass": "^5.1.0",
"gulp-sourcemaps": "^2.6.5",
"jest": "^26.5.2",
"jest-circus": "^26.5.2",
"replace-in-file": "^6.1.0",
"sass": "^1.83.0",
"serverless": "^2.8.0",
"serverless-offline": "^6.8.0",
"serverless-webpack": "^5.3.5",
"sharp": "^0.33.5",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.4",
"tsify": "^5.0.2",
"utf-8-validate": "^5.0.2",
"webpack": "^5.1.3"
}
}