forked from nuxt/website-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.32 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
99
100
101
{
"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"
},
"husky": {
"hooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,vue,md}": "prettier --write",
"*.{js,vue}": "eslint --fix",
"*.{md}": "markdownlint"
},
"devDependencies": {
"@actions/core": "^1.2.6",
"@nuxt/content": "^1.13.1",
"@nuxt/http": "^0.6.2",
"@nuxtjs/color-mode": "^2.0.3",
"@nuxtjs/eslint-config": "^5.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": "^3.4.2",
"@snackbar/core": "^1.7.0",
"@types/crawler": "^1.2.0",
"@types/fs-extra": "^9.0.6",
"babel-eslint": "^10.1.0",
"chart.js": "^2.9.4",
"clipboard": "^2.0.6",
"crawler": "^1.3.0",
"cross-env": "^7.0.3",
"cypress": "^6.4.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-cypress": "^2.11.2",
"esm": "^3.2.25",
"fibers": "^5.0.0",
"globby": "^11.0.2",
"husky": "^5.0.9",
"hygen": "^6.0.4",
"intersection-observer": "^0.12.0",
"lint-staged": ">=10.5.3",
"lodash.groupby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"markdownlint-cli": "^0.26.0",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"nuxt-edge": "^2.15.0-26882779.04646c5e",
"nuxt-i18n": "^6.18.0",
"prettier": "^2.2.1",
"prism-themes": "^1.5.0",
"reading-time": "^1.3.0",
"sass": "^1.32.7",
"sass-loader": "^10.1.1",
"start-server-and-test": "^1.12.0",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.19.0",
"textlint": "^11.8.1",
"textlint-filter-rule-allowlist": "^2.0.1",
"textlint-rule-preset-ja-spacing": "^2.0.2",
"textlint-rule-preset-jtf-style": "^2.3.6",
"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.2",
"vue-scrollactive": "^0.9.3",
"vue-scrollto": "^2.20.0"
},
"dependencies": {
"lite-youtube-embed": "^0.1.3"
}
}