-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.93 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.93 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
{
"name": "react-github-permalink",
"main": "dist/export.js",
"license": "MIT",
"files": [
"dist"
],
"version": "1.11.1",
"repository": {
"type": "git",
"url": "git+https://github.com/dwjohnston/react-github-permalink.git"
},
"scripts": {
"next:dev": "next dev",
"next:build": "npm run build-storybook && next build",
"next:start": "next start",
"next:lint": "next lint",
"test": "vitest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build && cp -r storybook-static public",
"test-storybook": "test-storybook",
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp src/library/GithubPermalink/github-permalink.css dist",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"release": "changeset publish"
},
"dependencies": {
"react-responsive": "^10.0.0",
"react-syntax-highlighter": "^15.5.0"
},
"peerDependencies": {
"react": ">=18.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@chromatic-com/storybook": "^4.0.1",
"@storybook/addon-docs": "^9.0.13",
"@storybook/addon-onboarding": "^9.0.13",
"@storybook/nextjs": "^9.0.13",
"@storybook/nextjs-vite": "^9.0.13",
"@storybook/react": "^9.0.13",
"@storybook/test-runner": "^0.23.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.1",
"@types/node": "^20",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"eslint-plugin-storybook": "^9.0.13",
"next": "15.3.4",
"playwright": "^1.53.1",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-syntax-highlighter": "^15.5.0",
"storybook": "^9.0.13",
"typescript": "^5",
"vitest": "^2.1.1",
"web-vitals": "^2.1.0"
}
}