This repository has been archived by the owner on Sep 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.14 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
62
63
64
65
66
67
68
69
{
"name": "@agency-undone/nuxt-static",
"version": "1.0.0",
"description": "Agency Undone's Boilerplate for Static Sites using Nuxt 2",
"homepage": "",
"license": "(UNLICENSED and Apache-2.0)",
"author": {
"name": "Agency Undone",
"email": "[email protected]"
},
"scripts": {
"prepare": "husky install",
"dev": "node_modules/.bin/nuxt --fix",
"start": "node_modules/.bin/nuxt start",
"build": "node_modules/.bin/nuxt build",
"generate": "node_modules/.bin/nuxt generate --fail-on-error && npm run generate-version-file && ./scripts/housekeeping.sh",
"lint": "eslint . --ext .js,.vue",
"test-build": "cypress run",
"storybook": "node_modules/.bin/nuxt storybook",
"storybook-build": "node_modules/.bin/nuxt storybook build",
"generate-version-file": "touch dist/version.txt && git rev-parse --short HEAD >> dist/version.txt && date >> dist/version.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/agency-undone/nuxt-static.git"
},
"keywords": [
"nuxt-boilerplate",
"agency-undone"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.x"
},
"devDependencies": {
"@babel/core": "^7.17.3",
"@babel/eslint-parser": "^7.17.0",
"@babel/runtime-corejs3": "^7.19.4",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nuxt/content": "^1.15.1",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/gtm": "^2.4.0",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/sitemap": "^2.4.0",
"@nuxtjs/storybook": "^4.3.2",
"@nuxtjs/style-resources": "^1.2.1",
"core-js": "^3.25.5",
"cypress": "^10.10.0",
"eslint": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-nuxt": "^3.0.0",
"husky": "^8.0.1",
"kramed": "^0.5.6",
"nuxt": "^2.15.8",
"nuxt-hammer": "^2.1.3",
"raw-loader": "^4.0.2",
"sass": "^1.43.5",
"sass-loader": "^10.1.1",
"vue": "^2.6.14",
"vue-ls": "^4.2.0",
"vue-uuid": "^2.0.2",
"vuex": "^3.6.2",
"webpack": "^4.46.0"
}
}