forked from mixpanel/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
{
"name": "mixpanel-docs",
"version": "0.0.1",
"description": "Mixpanel's Official Documentation",
"scripts": {
"api:build": "openapi --config=./openapi/openapi.config.yaml --output ./openapi/out/ bundle",
"api:lint": "openapi --config=./openapi/openapi.config.yaml --format=stylish lint",
"api:publish": "node ./openapi/publish.js",
"api:test": "./openapi/test.sh",
"build": "next build",
"dev": "next dev",
"spelling": "cspell '**/*.md*'",
"start": "next start",
"test": "./utils/test.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixpanel/docs.git"
},
"author": "Vijay Jayaram <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixpanel/docs/issues"
},
"homepage": "https://github.com/mixpanel/docs#readme",
"dependencies": {
"@docsearch/js": "^3.6.1",
"@docsearch/react": "^3.6.1",
"clsx": "^2.1.1",
"next": "^14.2.5",
"nextra": "latest",
"nextra-theme-docs": "latest",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.8",
"sharp": "^0.33.4"
},
"devDependencies": {
"@redocly/openapi-cli": "1.0.0-beta.16",
"@types/mixpanel": "^2.14.9",
"@types/node": "22.1.0",
"autoprefixer": "^10.4.19",
"cspell": "^8.13.2",
"postcss": "^8.4.41",
"rdme": "8.6.6",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"yaml": "2.5.0"
}
}