-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathpackage.json
96 lines (96 loc) · 3.77 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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "embla-carousel-docs",
"version": "8.5.2",
"author": "David Jerleke",
"description": "A lightweight carousel library with fluid motion and great swipe precision",
"repository": {
"type": "git",
"url": "git+https://github.com/davidjerleke/embla-carousel"
},
"bugs": {
"url": "https://github.com/davidjerleke/embla-carousel/issues"
},
"homepage": "https://www.embla-carousel.com",
"license": "MIT",
"type": "commonjs",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Info: no tests specified\" && exit 0",
"build": "npm-run-all sandboxfiles:build gatsby:build",
"gatsby:build": "gatsby build",
"sandboxfiles:build": "npm-run-all sandboxfiles:clean-vanilla sandboxfiles:clean-react sandboxfiles:copy-vanilla sandboxfiles:copy-react sandboxfiles:compile",
"sandboxfiles:compile": "npx ts-node --project ../../scripts/tsconfig.node.json ../../scripts/create-sandboxes/index.ts",
"sandboxfiles:clean-vanilla": "shx rm -r src/components/Sandbox/Vanilla/SandboxFilesDist/*",
"sandboxfiles:clean-react": "shx rm -r src/components/Sandbox/React/SandboxFilesDist/*",
"sandboxfiles:copy-vanilla": "shx cp -r src/components/Sandbox/Vanilla/SandboxFilesSrc/. src/components/Sandbox/Vanilla/SandboxFilesDist/",
"sandboxfiles:copy-react": "shx cp -r src/components/Sandbox/React/SandboxFilesSrc/. src/components/Sandbox/React/SandboxFilesDist/",
"predeploy:clean": "shx rm -r ../../docs",
"predeploy:build": "npm-run-all clean build",
"predeploy:format": "yarn workspace embla-carousel-monorepo run format",
"predeploy:copy": "shx cp -r ./public ../../docs",
"predeploy": "npm-run-all predeploy:clean predeploy:build predeploy:format predeploy:copy",
"eslint:report": "eslint \"src/**/*.{js,tsx,ts}\""
},
"dependencies": {
"@docsearch/react": "^3.0.0",
"@mdx-js/mdx": "^2.2.1",
"@mdx-js/react": "^2.2.1",
"@reduxjs/toolkit": "^2.2.5",
"babel-plugin-styled-components": "^2.0.2",
"codesandbox": "^2.2.3",
"embla-carousel": "8.5.2",
"embla-carousel-auto-height": "8.5.2",
"embla-carousel-auto-scroll": "8.5.2",
"embla-carousel-autoplay": "8.5.2",
"embla-carousel-class-names": "8.5.2",
"embla-carousel-fade": "8.5.2",
"embla-carousel-react": "8.5.2",
"focus-trap-react": "^8.10.0",
"gatsby": "^5.13.3",
"gatsby-plugin-layout": "^4.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-mdx": "^5.13.1",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-styled-components": "^6.13.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-source-filesystem": "^5.13.1",
"inter-ui": "^3.19.3",
"lodash": "^4.17.21",
"prism-react-renderer": "^1.3.5",
"prismjs": "^1.29.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-intersection-observer": "^8.33.1",
"react-redux": "^9.1.2",
"styled-components": "^5.3.3",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/lodash": "^4.14.178",
"@types/mdx-js__react": "^1.5.5",
"@types/node": "^17.0.15",
"@types/prettier": "2.7.3",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"@types/styled-components": "^5.1.22",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "2.8.8",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"type-fest": "^3.2.0",
"typescript": "^5.2.2"
}
}