forked from nuxt/website-v2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"repository": "nuxt/nuxtjs.org",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"build:check": "nuxt build --analyze",
"check:prettier": "yarn lint:prettier --list-different",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "nuxt",
"format:prettier": "yarn lint:prettier --write --loglevel warn",
"generate": "nuxt generate",
"lint": "run-p lint:all:*",
"lint:all:eslint": "yarn lint:eslint --fix",
"lint:all:markdownlint": "yarn lint:markdownlint",
"lint:all:textlint:ja": "yarn lint:textlint:ja --fix",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern modules/ --ignore-pattern plugins/ga.js --ext .js,.vue .",
"lint:markdownlint": "markdownlint \"*.md\"",
"lint:prettier": "prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"lint:textlint:ja": "textlint \"content/ja/**/*.md\"",
"new": "hygen new",
"start": "nuxt start",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"test:e2e:run": "cypress install && start-server-and-test start http://localhost:3000 cy:run",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,json,css,vue,md}": "prettier --write",
"*.{js,vue}": "eslint --fix",
"*.{md}": "markdownlint"
},
"devDependencies": {
"@actions/core": "^1.3.0",
"@nuxt/content": "^1.14.0",
"@nuxt/http": "^0.6.4",
"@nuxtjs/color-mode": "^2.0.9",
"@nuxtjs/eslint-config": "^6.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/netlify-files": "^1.2.0",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/svg": "^0.1.12",
"@nuxtjs/tailwindcss": "^4.1.1",
"@snackbar/core": "^1.7.0",
"@teamnovu/nuxt-breaky": "^1.2.2",
"@types/crawler": "^1.2.1",
"@types/fs-extra": "^9.0.11",
"babel-eslint": "^10.1.0",
"chart.js": "^2.9.4",
"clipboard": "^2.0.8",
"crawler": "^1.3.0",
"cross-env": "^7.0.3",
"cypress": "^7.4.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.11.3",
"esm": "^3.2.25",
"fibers": "^5.0.0",
"globby": "^11.0.3",
"husky": "^6.0.0",
"hygen": "^6.1.0",
"intersection-observer": "^0.12.0",
"lint-staged": ">=11.0.0",
"lodash.groupby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"markdownlint-cli": "^0.27.1",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nuxt-edge": "^2.16.0-27031694.f4a6b384",
"nuxt-i18n": "^6.27.0",
"prettier": "^2.3.0",
"prism-themes": "^1.7.0",
"reading-time": "^1.3.0",
"sass": "^1.34.0",
"sass-loader": "^10.1.1",
"start-server-and-test": "^1.12.3",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0",
"textlint": "^11.9.1",
"textlint-filter-rule-allowlist": "^2.0.1",
"textlint-rule-preset-ja-spacing": "^2.1.3",
"textlint-rule-preset-jtf-style": "^2.3.12",
"vue-chartjs": "^3.5.1",
"vue-cookieconsent-component": "^1.2.0",
"vue-if-bot": "^1.2.0",
"vue-observe-visibility": "^1.0.0",
"vue-plausible": "^1.1.4",
"vue-scrollactive": "^0.9.3",
"vue-scrollto": "^2.20.0"
},
"dependencies": {
"lite-youtube-embed": "^0.2.0"
}
}