-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.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
{
"name": "danilo-aleixo-portfolio",
"version": "1.0.0",
"description": "Danilo Aleixo's Personal Portfolio Website",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "gulp build",
"watch": "gulp watch",
"test": "node test.js"
},
"dependencies": {
"@sendgrid/mail": "^8.1.1",
"body-parser": "^1.20.2",
"cool-ascii-faces": "^1.3.4",
"ejs": "^3.1.9",
"express": "^4.18.2"
},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-sass": "^5.1.0",
"gulp-uglify": "^3.0.2",
"sass": "^1.69.5",
"nodemon": "^3.0.2",
"node-fetch": "^3.3.2",
"tape": "^5.6.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daniloaleixo/daniloaleixo.github.io.git"
},
"keywords": [
"portfolio",
"personal",
"website",
"node",
"express"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/daniloaleixo/daniloaleixo.github.io/issues"
},
"homepage": "https://github.com/daniloaleixo/daniloaleixo.github.io#readme",
"author": "Danilo Aleixo"
}