-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.28 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.28 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"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.mjs && git add . && git commit -m \"Prepare new release\"",
"imagesize": "node ./scripts/markdown-image-size.mjs",
"debug": "cross-env NODE_OPTIONS='--inspect' next",
"api:mock": "mockoon-cli start --data ./mocks/mockoon-api.json",
"dev": "next --webpack",
"dev:all": "concurrently \"npm run dev\" \"npm run api:mock\"",
"build": "next build --webpack",
"prebuild": "node --env-file .env.production ./scripts/generate-sitemap.mjs && 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": "6.4.11",
"@codemirror/lang-json": "6.0.2",
"@codemirror/lang-markdown": "6.5.0",
"@codemirror/lang-xml": "6.1.0",
"@codemirror/lang-yaml": "6.1.2",
"@docsearch/react": "4.6.0",
"@jmespath-community/jmespath": "1.3.0",
"@mockoon/cloud": "9.6.1",
"@tanstack/react-query": "5.90.21",
"@uiw/codemirror-theme-nord": "4.25.8",
"@uiw/react-codemirror": "4.25.8",
"ajv": "8.18.0",
"ajv-formats": "3.0.1",
"bootstrap": "5.3.8",
"date-fns": "4.1.0",
"eslint-config-next": "16.1.7",
"fast-xml-parser": "5.7.0",
"firebase": "12.10.0",
"github-slugger": "2.0.0",
"glob": "13.0.6",
"gray-matter": "4.0.3",
"isbot": "5.1.36",
"js-yaml": "4.1.1",
"jsonpath-plus": "10.4.0",
"leaflet": "1.9.4",
"marked": "17.0.4",
"next": "16.2.3",
"object-path": "0.11.8",
"qrcode.react": "4.2.0",
"raw-loader": "4.0.2",
"react": "19.2.4",
"react-bootstrap": "2.10.10",
"react-dom": "19.2.4",
"react-github-btn": "1.4.0",
"react-hook-form": "7.71.2",
"react-markdown": "10.1.0",
"react-syntax-highlighter": "16.1.1",
"rehype-raw": "7.0.0",
"remark-gfm": "4.0.1",
"sass": "1.98.0",
"semver": "7.7.4",
"typed.js": "3.0.0",
"xml-js": "1.6.11"
},
"devDependencies": {
"@mockoon/cli": "9.6.1",
"@types/glob": "9.0.0",
"@types/leaflet": "1.9.21",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-syntax-highlighter": "15.5.13",
"@types/semver": "7.7.1",
"@types/webpack": "5.28.5",
"@types/webpack-env": "1.18.8",
"concurrently": "9.2.1",
"cross-env": "10.1.0",
"cross-var": "1.1.0",
"firebase-tools": "15.10.1",
"image-size": "2.0.2",
"prettier": "3.8.1",
"typescript": "5.9.3"
}
}