-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
97 lines (97 loc) · 3.21 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
97
{
"name": "mockoon-com",
"version": "1.0.0",
"description": "Mockoon app website repository",
"main": "index.js",
"scripts": {
"release": "git checkout -b release/next && node ./scripts/new-release.js && git add . && git commit -m \"Prepare new release\"",
"imagesize": "node ./scripts/markdown-image-size.js",
"debug": "cross-env NODE_OPTIONS='--inspect' next",
"api:mock": "mockoon-cli start --data ./mocks/mockoon-api.json",
"dev": "next",
"dev:all": "concurrently \"npm run dev\" \"npm run api:mock\"",
"build": "next build",
"prebuild": "node --env-file .env.production ./scripts/generate-sitemap.js && cp -R ./content/old-releases/desktop/ ./public/desktop-changelogs-markdown && cp -R -T ./content/releases/ ./public/desktop-changelogs-markdown/ && sed -i 's./images/sponsors/./images/sponsors/light/.g' ./public/desktop-changelogs-markdown/*",
"start": "next start",
"deploy": "npm run build && firebase deploy --token \"$FIREBASE_TOKEN\" --only hosting"
},
"author": {
"name": "Guillaume Monnet",
"email": "guillaume@1kb.software",
"url": "https://1kb.software/"
},
"homepage": "https://mockoon.com",
"repository": {
"type": "git",
"url": "git+https://github.com/mockoon/mockoon.com.git"
},
"bugs": {
"url": "https://github.com/mockoon/mockoon.com/issues"
},
"license": "MIT",
"prettier": {
"jsxSingleQuote": true,
"singleQuote": true,
"trailingComma": "none"
},
"dependencies": {
"@codemirror/lang-html": "github:codemirror/lang-html",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.3.0",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/lang-yaml": "^6.0.0",
"@docsearch/react": "^3.5.2",
"@mockoon/cloud": "^9.1.0",
"@tanstack/react-query": "^5.8.3",
"@uiw/codemirror-theme-nord": "^4.21.21",
"@uiw/react-codemirror": "^4.21.21",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bootstrap": "^5.3.2",
"date-fns": "^3.6.0",
"eslint-config-next": "^14.0.2",
"fast-xml-parser": "^4.4.1",
"firebase": "^10.6.0",
"github-slugger": "^2.0.0",
"glob": "^10.3.10",
"gray-matter": "^4.0.3",
"isbot": "^5.1.4",
"js-yaml": "^4.1.0",
"jsonpath-plus": "^10.1.0",
"marked": "^4.3.0",
"next": "^14.2.10",
"object-path": "^0.11.8",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.48.2",
"react-markdown": "^9.0.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sass": "^1.69.5",
"semver": "^7.5.4",
"typed.js": "^2.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@mockoon/cli": "^9.0.0",
"@types/glob": "^8.1.0",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-syntax-highlighter": "^15.5.10",
"@types/semver": "^7.5.5",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.4",
"axios": "^1.7.4",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cross-var": "^1.1.0",
"firebase-tools": "^13.6.0",
"image-size": "^1.0.2",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
}
}