-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "moxy",
"description": "MOXY - mock and proxy any API endpoints",
"version": "0.1.0",
"private": true,
"author": "Rakesh singh <[email protected]>",
"engines": {
"node": ">=18",
"npm": "use yarn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:fix": "prettier --write --ignore-path .gitignore ."
},
"keywords": [
"mock",
"proxy",
"json",
"reverse proxy",
"mock json"
],
"dependencies": {
"@headlessui/react": "^1.7.17",
"ace-builds": "^1.23.4",
"autoprefixer": "^10.4.15",
"axios": "^1.4.0",
"eslint-config-prettier": "^9.1.0",
"fs-extra": "^11.1.1",
"json5": "^2.2.3",
"lowdb": "^6.0.1",
"next": "^14.1.3",
"postcss": "^8.4.28",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.2",
"react-modern-drawer": "^1.2.0",
"react-select": "^5.7.4",
"swr": "^2.2.0",
"tailwindcss": "^3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"eslint": "8.45.0",
"eslint-config-next": "^14.1.3"
},
"packageManager": "[email protected]"
}