forked from nuxt/website-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.64 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "nuxtjs.org",
"version": "1.1.0",
"description": "Nuxt.js official website",
"main": "index.js",
"dependencies": {
"@nuxt/content": "^1.9.0",
"@nuxt/http": "^0.5.13",
"@nuxtjs/tailwindcss": "^3.1.0",
"@snackbar/core": "^1.7.0",
"add": "^2.0.6",
"chart.js": "^2.9.3",
"clipboard": "^2.0.6",
"cookie": "^0.4.1",
"defu": "^3.1.0",
"degit": "^2.8.0",
"front-matter": "^4.0.2",
"fs-extra": "^9.0.1",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"intersection-observer": "^0.11.0",
"lodash.groupby": "^4.6.0",
"lodash.sortby": "^4.7.0",
"micro": "^9.3.4",
"node-fetch": "^2.6.1",
"normalize.css": "^8.0.1",
"nuxt-edge": "^2.14.0-26597729.aebf0ffe",
"nuxt-i18n": "^6.15.1",
"nuxt-svg-loader": "^1.2.0",
"prism-themes": "^1.4.0",
"prismjs": "^1.21.0",
"reading-time": "^1.2.0",
"v-lazy-image": "^1.4.0",
"vue-chartjs": "^3.5.1",
"vue-cookieconsent-component": "^1.2.0",
"vue-if-bot": "^1.2.0",
"vue-observe-visibility": "^0.4.6",
"vue-scrollactive": "^0.9.3",
"vue-scrollto": "^2.18.2"
},
"devDependencies": {
"@nuxtjs/color-mode": "^1.1.1",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/netlify-files": "^1.2.0",
"@nuxtjs/proxy": "^2.0.1",
"@nuxtjs/pwa": "^3.0.2",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/svg": "^0.1.12",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"cypress": "5.3.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-cypress": "^2.11.2",
"globby": "^11.0.1",
"husky": "^4.3.0",
"hygen": "^6.0.4",
"lint-staged": ">=10.4.0",
"markdownlint-cli": "^0.23.2",
"netlify-plugin-cypress": "^1.4.1",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"sass-loader": "^10.0.2",
"start-server-and-test": "^1.11.4",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0"
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"build:check": "nuxt build --analyze",
"start": "nuxt start",
"generate": "nuxt generate",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e:run": "start-server-and-test start http://localhost:3000 cy:run",
"test:e2e:dev": "start-server-and-test dev http://localhost:3000 cy:open",
"lint:eslint": "eslint --ignore-path .gitignore --ignore-pattern modules/ --ignore-pattern plugins/ga.js --ext .js,.vue .",
"lint:markdownlint": "markdownlint \"*.md\"",
"lint:stylelint": "stylelint \"**/*.{vue,scss}\"",
"lint:prettier": "prettier \"**/*.{js,json,css,scss,vue,html,md}\"",
"check:prettier": "yarn lint:prettier --list-different",
"format:prettier": "yarn lint:prettier --write --loglevel warn",
"lint:all:eslint": "yarn lint:eslint --fix",
"lint:all:markdownlint": "yarn lint:markdownlint",
"lint:all:stylelint": "yarn lint:stylelint --fix",
"lint": "run-p lint:all:*",
"new": "hygen new"
},
"husky": {
"hooks": {
"pre-commit": "cross-env PRE_COMMIT=true lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxtjs.org.git"
},
"keywords": [
"nuxt.js",
"vuejs",
"nuxtjs",
"js"
],
"author": "alexchopin",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuxt/nuxtjs.org/issues"
},
"homepage": "https://github.com/nuxt/nuxtjs.org#readme",
"lint-staged": {
"*.{js,vue}": "eslint --fix",
"*.{md}": "markdownlint",
"*.{js,json,css,vue,md}": "prettier --write"
}
}