This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·74 lines (74 loc) · 2.19 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
70
71
72
73
74
{
"name": "nuxt-page-generator-helper",
"version": "1.6.3",
"description": "Generate your pages statically without using payload extractors.",
"keywords": [
"nuxtjs",
"page",
"routes",
"static-site-generator",
"payload-extractor"
],
"repository": "GrabarzUndPartner/nuxt-page-generator-helper",
"license": "MIT",
"author": "Thorn-Welf Walli",
"contributors": [
{
"name": "Thorn-Welf Walli",
"email": "[email protected]"
},
{
"name": "Stephan Gerbeth",
"email": "[email protected]"
}
],
"files": [
"lib"
],
"main": "lib/module.js",
"scripts": {
"dev": "nuxt example",
"start": "nuxt start --config-file example/nuxt.config.js",
"start:generate": "npm run generate && npm run express-server --dist=dist",
"build": "nuxt build --config-file example/nuxt.config.js",
"generate": "nuxt generate --config-file example/nuxt.config.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint --ext .js,.vue example lib test",
"lint:css": "stylelint \"example/**/*.vue\" \"example/**/**/*.css\", \"lib/**/*.vue\" \"lib/**/**/*.css\"",
"express-server": "node ./tools/express-server.js",
"test": "npm run lint && jest"
},
"dependencies": {
"@nuxtjs/sitemap": "2.4.0",
"change-case": "4.1.2",
"esm": "^3.2.25",
"lost": "8.3.1",
"nuxt-i18n": "6.18.0",
"vue-lazy-hydration": "1.0.0-beta.14",
"webpack-bundle-analyzer": "4.4.0",
"webpack-virtual-modules": "0.4.2"
},
"devDependencies": {
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.11",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@nuxtjs/eslint-config": "5.0.0",
"@nuxtjs/module-test-utils": "1.6.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.6.3",
"core-js": "3.8.3",
"eslint": "7.18.0",
"husky": "5.0.6",
"jest": "^26.6.3",
"nuxt-edge": "latest",
"standard-version": "9.1.0",
"stylelint": "13.9.0",
"stylelint-config-lost": "0.0.3",
"stylelint-config-recess-order": "2.3.0",
"stylelint-config-standard": "20.0.0"
},
"publishConfig": {
"access": "public"
}
}