-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.37 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
{
"name": "animate-code-root",
"private": "true",
"version": "1.0.0",
"description": "A React component for animating code blocks into one another",
"homepage": "https://github.com/onurkerimov/animate-code#readme",
"bugs": {
"url": "https://github.com/onurkerimov/animate-code/issues"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"license": "ISC",
"author": "onurkerimov",
"type": "module",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/onurkerimov/animate-code.git"
},
"packageManager": "pnpm@8.8.0",
"scripts": {
"dev": "vite dev",
"build": "rollup -c",
"preview": "vite preview",
"lint": "pnpm lint:eslint && pnpm lint:style",
"lint:fix": "pnpm lint:eslint-fix && pnpm lint:style-fix",
"lint:eslint": "eslint . --ext .js,.ts,.tsx",
"lint:eslint-fix": "eslint . --fix --ext .js,.ts,.tsx",
"lint:style": "stylelint 'src/**/*.css'",
"lint:style-fix": "stylelint --fix 'src/**/*.css'",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:virtual-update": "vitest run --update",
"typecheck": "tsc --project tsconfig.json --pretty --noEmit --incremental false"
},
"dependencies": {
"@types/prismjs": "^1.26.3",
"microbundle": "^0.15.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "18.2.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-typescript2": "^0.36.0",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-lib-inject-css": "^1.3.0",
"workspaces-run": "^1.0.2"
},
"devDependencies": {
"@babel/helper-module-imports": "^7.22.15",
"@types/node": "^20.8.0",
"@types/react": "18.2.24",
"@types/react-dom": "18.2.8",
"@vitejs/plugin-react-swc": "3.3.2",
"babel-plugin-macros": "^3.1.0",
"stylelint": "15.10.3",
"stylelint-config-recess-order": "4.3.0",
"stylelint-config-standard": "34.0.0",
"typescript": "5.2.2",
"typescript-plugin-css-modules": "^5.0.2",
"vite": "4.4.9",
"vite-plugin-babel-macros": "^1.0.6",
"vite-plugin-pages": "^0.31.0",
"vite-tsconfig-paths": "^4.2.1",
"@storybook/addon-a11y": "7.4.5",
"@storybook/addon-essentials": "7.4.5",
"@storybook/react": "7.4.5",
"@storybook/react-vite": "7.4.5",
"storybook": "7.4.5"
}
}