-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.91 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
{
"name": "digital-resume",
"version": "1.0.0",
"description": "An online digital resume built with eleventy.",
"scripts": {
"start": "npm run dev",
"dev": "run-s clean eleventy:dev",
"build": "run-s clean eleventy:prod",
"eleventy:dev": "cross-env ELEVENTY_ENV=development eleventy --serve",
"eleventy:prod": "cross-env ELEVENTY_ENV=production eleventy",
"clean": "del-cli dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vranjan7077/Digital-Resume.git"
},
"keywords": [
"Digital Resume",
"CV",
"Personal Resume",
"Software Professinal"
],
"author": "Vinay Ranjan",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vranjan7077/Digital-Resume/issues"
},
"homepage": "https://github.com/Vranjan7077/Digital-Resume#readme",
"dependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"clean-css": "^5.3.2",
"critical": "^5.1.1",
"cssesc": "^3.0.0",
"cssnano": "^6.0.1",
"del-cli": "^5.0.0",
"dotenv": "^16.3.1",
"focus-visible": "^5.2.0",
"html-minifier": "^4.0.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"markdown-it": "^13.0.1",
"memfs": "^4.2.0",
"mime": "^3.0.0",
"netlify-plugin-cache": "^1.0.3",
"node-sass": "^9.0.0",
"svg-sprite": "^2.0.2",
"webpack": "^5.88.2"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-cache-assets": "^2.3.0",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5"
}
}