-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
105 lines (105 loc) · 4.58 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
{
"name": "commercetools-docs-kit",
"version": "0.0.0",
"description": "commercetools Documentation Kit (monorepo)",
"private": true,
"workspaces": ["packages/*", "websites/*", "api-specs/*"],
"preconstruct": {
"packages": ["packages/ui-kit"]
},
"scripts": {
"clean": "yarn workspaces foreach -p --include '@commercetools-website/*' run clean",
"start": "yarn workspace @commercetools-website/documentation start",
"build-packages": "preconstruct build",
"build": "./scripts/build.sh",
"vercel-build": "echo \"you're welcome - nothing to build\"",
"generate-icons": "yarn workspace @commercetools-website/docs-smoke-test run generate-icons && yarn workspace @commercetools-docs/ui-kit run generate-icons && prettier --write '**/generated/*.{js,ts,tsx}'",
"lint": "jest --projects jest.{eslint,text}.config.js",
"lint:js": "jest --config jest.eslint.config.js",
"lint:text": "npx commercetools-vale websites/**/*.mdx",
"format": "yarn format:js && yarn format:md && yarn format:yaml",
"format:js": "prettier --write '**/*.{js,ts,tsx}'",
"format:md": "prettier --write --parser markdown '**/*.md'",
"format:yaml": "prettier --write --parser yaml '**/*.{yaml,yml}'",
"labels:sync": "github-labels sync",
"test": "jest --config jest.test.config.js",
"test:watch": "yarn test --watch",
"test:e2e": "yarn test:e2e:docs-smoke-test && yarn test:e2e:api-docs-smoke-test && yarn test:e2e:self-learning-smoke-test",
"test:e2e:docs-smoke-test": "cross-env NODE_ENV=test cypress run --spec 'cypress/e2e/docs-smoke-test/**/*.cy.ts'",
"test:e2e:api-docs-smoke-test": "cross-env NODE_ENV=test cypress run --spec 'cypress/e2e/api-docs-smoke-test/**/*.cy.ts'",
"test:e2e:self-learning-smoke-test": "cross-env NODE_ENV=test cypress run --config-file 'cypress.config.cucumber.ts' --spec 'cypress/e2e/self-learning-smoke-test/*.feature'",
"create-new-microsite": "./scripts/create-new-microsite.sh",
"cypress-open": "cross-env NODE_ENV=test cypress open",
"check-links": "yarn exec linkinator ./public",
"check-npm-login": "npm_config_registry=https://registry.npmjs.org npm whoami",
"changeset": "changeset",
"changeset:version-and-format": "changeset version && prettier --write --parser json '**/package.json' && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install",
"versions:appkit": "manypkg upgrade @commercetools-frontend",
"versions:uikit": "manypkg upgrade @commercetools-uikit",
"typecheck": "tsc --noEmit --skipLibCheck",
"typecheck:cypress": "yarn typecheck -p cypress"
},
"dependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "7.25.1",
"@babel/helper-define-map": "^7.18.6",
"@babel/runtime": "^7.20.13",
"@babel/runtime-corejs3": "^7.20.13",
"@badeball/cypress-cucumber-preprocessor": "^18.0.0",
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.0",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.8",
"@commercetools-frontend/babel-preset-mc-app": "22.32.0",
"@commercetools-frontend/eslint-config-mc-app": "22.32.0",
"@commercetools/github-labels": "1.1.0",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@manypkg/cli": "0.21.4",
"@manypkg/get-packages": "2.2.2",
"@percy/cli": "1.29.3",
"@percy/cypress": "3.1.2",
"@preconstruct/cli": "2.8.7",
"@svgr/cli": "8.1.0",
"@svgr/core": "^8.0.0",
"@svgr/plugin-jsx": "8.1.0",
"@svgr/plugin-svgo": "8.1.0",
"@testing-library/cypress": "10.0.2",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "14.3.1",
"babel-jest": "29.7.0",
"babel-plugin-typescript-to-proptypes": "2.1.0",
"core-js": "3.38.1",
"cross-env": "7.0.3",
"cypress": "13.14.2",
"eslint": "8.57.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-import-resolver-webpack": "0.13.9",
"eslint-plugin-import": "^2.27.5",
"http-server": "^14.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.4.2",
"jest-preset-gatsby": "1.0.134",
"jest-runner-eslint": "2.2.0",
"jest-runner-prettier": "1.0.0",
"jest-silent-reporter": "0.6.0",
"jest-watch-typeahead": "2.2.2",
"linkinator": "5.0.2",
"lint-staged": "15.2.10",
"postcss-syntax": "0.36.2",
"prettier": "2.8.8",
"react": "18.3.1",
"react-dom": "18.3.1",
"serve": "14.2.3",
"shelljs": "0.8.5",
"start-server-and-test": "2.0.5",
"tsc-files": "^1.1.3",
"typescript": "5.5.4",
"vercel": "31.4.0"
},
"engines": {
"node": ">=18",
"npm": ">=5"
},
"packageManager": "yarn@3.8.5"
}