forked from cypress-io/cypress-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.56 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
{
"name": "cypress-documentation",
"version": "2.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/cypress-io/docs.git"
},
"license": "MIT",
"scripts": {
"build": "nuxt generate && mv dist/404/index.html dist/404.html && rm -rf dist/404",
"start": "cross-env NODE_ENV=development nuxt",
"start:ci": "cross-env NODE_ENV=test yarn build && cd dist/ && yarn serve:dist",
"changed-files-broken-link-checker:ci": "node scripts/changedFilesBrokenLinkChecker.js",
"broken-link-checker:prod": "node scripts/recursiveBrokenLinkChecker.js",
"broken-link-checker:dev": "DOCS_SITE_URL=http://localhost:3000/ node scripts/recursiveBrokenLinkChecker.js",
"serve:dist": "node scripts/server.js",
"fix:markdown": "prettier --write '**/*.md'",
"lint:markdown": "prettier --check '**/*.md'",
"lint:js": "eslint --ext .js,.vue .",
"lint:style": "stylelint **/*.{vue,css}",
"lint": "yarn lint:js && yarn lint:style && yarn lint:markdown",
"test": "./node_modules/.bin/cypress open",
"test:unit": "NODE_OPTIONS=--experimental-vm-modules jest",
"make-empty-commit": "node node_modules/make-empty-github-commit/bin/empty.js --repo cypress-io/docs",
"postinstall": "husky install; patch-package"
},
"lint-staged": {
"*.{js,vue}": "eslint --cache --fix",
"*.{css,vue}": "stylelint",
"*.css": "stylelint --fix",
"*.{md, json}": "prettier --write"
},
"dependencies": {
"@docsearch/css": "^1.0.0-alpha.28",
"@docsearch/js": "^1.0.0-alpha.28",
"@fullstory/browser": "^1.4.9",
"@nuxt/content": "1.15.1",
"@nuxtjs/axios": "5.13.6",
"@nuxtjs/gtm": "2.4.0",
"@nuxtjs/sentry": "^5.0.3",
"@sanity/client": "^2.8.0",
"@tailwindcss/forms": "0.5.0",
"deepdash": "5.3.9",
"endent": "^2.1.0",
"nuxt": "2.15.8",
"nuxt-webpack-optimisations": "2.2.0",
"prism-themes": "^1.4.0",
"remark-directive": "^1.0.1",
"replace-in-file": "^6.2.0",
"store2": "^2.12.0",
"unist-util-visit": "^2.0.3",
"vue": "2.6.14",
"vue-scrollactive": "^0.9.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@cypress/env-or-json-file": "^2.0.0",
"@cypress/eslint-plugin-dev": "^5.1.0",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@netlify/plugin-sitemap": "^0.8.1",
"@nuxt/image": "^0.6.2",
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/fontawesome": "^1.1.2",
"@nuxtjs/tailwindcss": "5.0.2",
"@percy/cypress": "3.1.1",
"autoprefixer": "^9",
"babel-eslint": "^10.1.0",
"broken-link-checker": "^0.7.8",
"chalk": "^4.1.0",
"common-tags": "^1.8.0",
"cross-env": "^7.0.3",
"cypress": "^10.0.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.6.0",
"express": "^4.17.1",
"husky": "^5.1.1",
"jest": "^27.2.0",
"lint-staged": "^10.5.4",
"make-empty-github-commit": "^1.2.1",
"netlify-cli": "^3.5.0",
"patch-package": "^6.4.5",
"postcss": "8.4.12",
"postinstall-postinstall": "^2.1.0",
"prettier": "2.6.0",
"rehype-stringify": "^9.0.3",
"remark": "^13.0.0",
"strip-markdown": "^4.0.0",
"stylelint": "^13.6.1",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "3.0.23"
}
}