forked from cypress-io/cypress-realworld-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.06 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
{
"private": true,
"scripts": {
"build": "next build",
"build:profile": "next build --profile",
"build:debug": "next build --debug",
"check:links": "ts-node scripts/brokenLinks.ts",
"create-search-index": "node ./scripts/search/create-search-index.js",
"cypress:open": "cypress open",
"cypress:open:mobile": "cypress open --config viewportWidth=375,viewportHeight=667",
"cypress:run": "cypress run",
"cypress:run:mobile": "cypress run --config viewportWidth=375,viewportHeight=667",
"dev": "next dev",
"dev:watch": "next-remote-watch ./content",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"generate-content": "ts-node scripts/generateContentFiles.ts",
"generate-rwe-content": "ts-node scripts/generateRealWorldExamples.ts",
"lint": "next lint",
"postbuild": "next-sitemap",
"pre-commit": "yarn types && pretty-quick --staged && yarn run lint && yarn run stop-only",
"prettier": "prettier --write '**/**.{ts,js,tsx}' '*.{json,md,yml}'",
"start": "next start",
"update-rwe-slugs": "ts-node scripts/updateRWESlugs.ts",
"update-slugs": "ts-node scripts/updateSlugs.ts",
"stop-only": "stop-only --folder cypress/integration",
"test:unit": "mocha -r ts-node/register -r tsconfig-paths/register 'tests/**/*.ts'",
"types": "tsc --noEmit",
"update-algolia-index": "yarn create-search-index && ts-node scripts/updateAlgoliaIndex.ts"
},
"dependencies": {
"@docsearch/react": "^3.2.1",
"@headlessui/react": "^1.6.6",
"@heroicons/react": "v1",
"@mapbox/rehype-prism": "^0.8.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@types/glob": "^7.2.0",
"@xstate/react": "^3.0.1",
"@zeit/next-css": "^1.0.1",
"algoliasearch": "^4.14.2",
"dotenv": "^10.0.0",
"glob": "^8.0.3",
"globby": "^13.1.2",
"linkinator": "^2.14.4",
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-pro-sidebar": "^0.7.1",
"rehype-slug": "^5.0.0",
"remark-admonitions": "^1.2.1",
"xstate": "^4.33.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/lodash": "^4.14.172",
"@types/mocha": "^9.0.0",
"@types/react": "^17.0.15",
"autoprefixer": "^10.4.8",
"chai": "^4.3.4",
"cypress": "^10.5.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"gray-matter": "^4.0.3",
"husky": "^8.0.1",
"markdown-toc-unlazy": "^1.0.1",
"mocha": "^10.0.0",
"next-mdx-remote": "^3.0.4",
"next-remote-watch": "^1.0.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"pretty-quick": "^3.1.1",
"slugify": "^1.6.5",
"stop-only": "^3.1.2",
"tailwindcss": "^3.1.8",
"ts-node": "^10.1.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.3.5",
"unslugify": "^1.0.2",
"url-loader": "^4.1.1",
"vuepress": "^1.9.7"
}
}