-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.6 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
{
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"start": "yarn storybook",
"storybook": "storybook dev -p 6006",
"clean": "yarn workspaces foreach --all -pt run clean",
"build": "yarn workspaces foreach --all -pt run build",
"test:ts": "yarn workspaces foreach --all run test:ts",
"lint": "yarn workspaces foreach --all run lint",
"lint:fix": "yarn workspaces foreach --all run lint:fix",
"test:unit": "yarn workspaces foreach --all run test:unit",
"test": "yarn lint & yarn test:ts & yarn test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtaits/photo-editor-js.git"
},
"author": "Vadim Taits",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtaits/photo-editor-js/issues"
},
"homepage": "https://github.com/vtaits/photo-editor-js#readme",
"devDependencies": {
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/builder-vite": "^8.2.9",
"@storybook/manager-api": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/testing-library": "^0.2.2",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"krustykrab": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"storybook": "^8.2.9",
"styled-components": "^6.1.13",
"typescript": "^5.5.4",
"vite": "^5.4.6"
},
"packageManager": "[email protected]"
}