-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.8 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.8 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
{
"name": "code-editor",
"version": "0.0.1",
"description": "code editor",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alkkas/code-editor.git"
},
"author": "alkkas (Egor Chernykh)",
"license": "ISC",
"bugs": {
"url": "https://github.com/alkkas/code-editor/issues"
},
"homepage": "https://github.com/alkkas/code-editor#readme",
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.8.0",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@types/node": "^22.5.1",
"@types/react": "^18.2.61",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-storybook": "^0.8.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"storybook": "^8.2.9",
"typescript": "^5.3.3",
"vite": "^5.4.2",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vite-plugin-dts": "^4.0.3",
"vite-tsconfig-paths": "^5.0.1"
},
"dependencies": {
"autoprefixer": "^10.4.18",
"immer": "^10.0.4",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.1",
"tw-colors": "^3.3.1",
"zustand": "^4.5.5"
}
}