-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.78 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.78 KB
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
{
"name": "@canvas-component/react",
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"private": true,
"license": "MIT",
"repository": "https://github.com/KevinMind/canvas-component",
"author": "Kevin Meinhardt <kmeinhardt7@gmail.com>",
"files": [
"dist/**"
],
"scripts": {
"build": "tsup src/index.tsx --format esm,cjs --dts --external react",
"dev": "tsup src/index.tsx --format esm,cjs --watch --dts --external react",
"lint": "TIMING=1 eslint src",
"format": "yarn lint --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:browser": "vitest run --browser.enabled --browser.name=chromium --browser.headless",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"storybook": "storybook dev -p 8006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test-storybook:ci": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"yarn build-storybook && npx http-server storybook-static --port 6006 --silent\" \"wait-on tcp:127.0.0.1:6006 && yarn test-storybook --url http://127.0.0.1:6006\""
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-links": "^8.4.0",
"@storybook/addon-storysource": "^8.4.0",
"@storybook/blocks": "^8.4.0",
"@storybook/react": "^8.4.0",
"@storybook/react-vite": "^8.4.0",
"@storybook/test": "^8.4.0",
"@storybook/test-runner": "^0.21.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/randomcolor": "^0.5.6",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react": "^4.3.0",
"@vitest/browser": "^2.1.0",
"bezier-easing": "^2.1.0",
"chromatic": "^6.5.3",
"concurrently": "^9.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-storybook": "^0.8.0",
"http-server": "^14.1.1",
"jsdom": "^27.4.0",
"playwright": "^1.48.0",
"prettier": "^2.0.0",
"randomcolor": "^0.6.2",
"storybook": "^8.4.0",
"tsup": "^5.10.1",
"two.js": "^0.8.5",
"typescript": "^4.5.3",
"use-spring": "^0.2.4",
"vite": "^5.4.0",
"vitest": "^2.1.0",
"wait-on": "^8.0.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"packageManager": "yarn@1.22.15"
}