-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.58 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.58 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
{
"name": "ravgeet-web",
"version": "1.0.0",
"private": true,
"description": "This is a NPM package manager file for Ravgeet Dhillon's website.",
"repository": {
"type": "git",
"url": "git+https://github.com/ravgeetdhillon/ravgeet-web"
},
"bugs": {
"url": "https://github.com/ravgeetdhillon/ravgeet-web/issues"
},
"homepage": "https://github.com/ravgeetdhillon/ravgeet-web",
"keywords": [],
"author": "Ravgeet Dhillon <ravgeetdhillon@gmail.com>",
"license": "ISC",
"scripts": {
"dev-http": "nuxt --port 3001",
"dev": "npm run dev-http & local-ssl-proxy --key .cert/localhost-key.pem --cert .cert/localhost.pem --source 3000 --target 3001",
"profile": "nuxt --profile",
"pre-build": "last_updated_at=`date +%Y-%m-%dT%H:%M:%S.000%z` && printf \"$last_updated_at\" > .last-updated-at",
"build": "npm run pre-build && nuxt build",
"analyze": "nuxt build --analyze",
"start": "nuxt start",
"fetch-blog-data": "node scripts/fetch-blog-data.js",
"pre-generate": "npm run fetch-blog-data && last_updated_at=`date +%Y-%m-%dT%H:%M:%S.000%z` && printf \"$last_updated_at\" > .last-updated-at",
"generate": "npm run pre-generate && nuxt generate",
"serve": "npx serve dist",
"format-check": "prettier --check \"{,!(node_modules)/**/}*.{js,vue}\"",
"format": "prettier --write \"{,!(node_modules)/**/}*.{js,vue}\"",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "npm run lint:js && npm run lint:prettier",
"lintfix": "prettier --write --list-different . && npm run lint:js -- --fix"
},
"dependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/feed": "^2.0.0",
"@nuxtjs/robots": "^2.5.0",
"bootstrap": "^4.6.2",
"bootstrap-vue": "^2.23.1",
"classnames": "^2.3.2",
"core-js": "^3.27.2",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"marked": "^4.2.12",
"nanoid": "^3.3.11",
"nuxt": "^2.18.1",
"vue": "^2.7.14",
"vue-gtag": "^1.16.1",
"vue-server-renderer": "^2.7.14",
"vue-template-compiler": "^2.7.14",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/sitemap": "^2.4.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-vue": "^8.7.1",
"local-ssl-proxy": "^1.3.0",
"prettier": "^2.8.3",
"sass": "^1.89.2",
"sass-loader": "^10.4.1"
}
}