-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 2.83 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
{
"name": "@chromaui/chromatic-e2e",
"version": "0.0.56",
"private": true,
"description": "Archive end-to-end tests to be replayed in Storybook and Chromatic",
"repository": {
"type": "git",
"url": "https://github.com/chromaui/chromatic-e2e.git"
},
"author": "Chromatic <[email protected]>",
"license": "MIT",
"scripts": {
"archive-storybook:playwright": "CHROMATIC_ARCHIVE_LOCATION=packages/playwright/test-results packages/playwright/dist/bin/archive-storybook.js",
"build-archive-storybook:playwright": "CHROMATIC_ARCHIVE_LOCATION=packages/playwright/test-results packages/playwright/dist/bin/build-archive-storybook.js",
"archive-storybook:cypress": "CHROMATIC_ARCHIVE_LOCATION=packages/cypress/tests/cypress/test-downloads packages/cypress/dist/bin/archive-storybook.js",
"build-archive-storybook:cypress": "CHROMATIC_ARCHIVE_LOCATION=packages/cypress/tests/cypress/test-downloads packages/cypress/dist/bin/build-archive-storybook.js",
"clean": "yarn workspaces foreach --all --parallel run clean",
"prebuild": "yarn clean",
"build": "yarn workspaces foreach --all --topological-dev --parallel run build",
"test:unit": "yarn workspaces foreach --all run test:unit",
"dev:server": "node test-server/server",
"dev:storybook": "cd test-storybook && yarn storybook",
"start": "yarn build:watch",
"lint": "yarn workspaces foreach --all --parallel run lint",
"prettier": "prettier",
"prepare": "husky install",
"release": "yarn build && yarn changeset publish"
},
"devDependencies": {
"@auto-it/released": "^10.32.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@changesets/cli": "^2.27.1",
"@jest/types": "^27.0.6",
"@playwright/test": "^1.46.1",
"@storybook/eslint-config-storybook": "^3.1.2",
"@swc/core": "^1.4.6",
"@testing-library/dom": "^8.1.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/chrome-remote-interface": "^0",
"@types/express": "^4.17.17",
"@types/jest": "^27.0.3",
"@types/node": "^16.4.1",
"@types/node-fetch": "^2.6.6",
"auto": "^10.3.0",
"babel-jest": "^27.0.6",
"concurrently": "^7.0.0",
"cypress": "^13.6.1",
"eslint": "^7.32.0",
"express": "^4.18.2",
"express-basic-auth": "^1.2.1",
"husky": ">=6",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"lint-staged": ">=10",
"node-fetch": "2",
"playwright": "^1.46.1",
"prettier": "^2.3.1",
"prompts": "^2.4.2",
"rimraf": "^3.0.2",
"start-server-and-test": "^2.0.3",
"ts-jest": "^27.0.4",
"tsup": "^7.3.0",
"typescript": "^4.2.4"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
]
}