-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.37 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
{
"name": "js-navigator",
"version": "2.3.15",
"description": "watch your project files and their dependencies, make a request to your backend application and watch how your files interact with that request",
"main": "JsNavigator.js",
"scripts": {
"test-frontend": "vite",
"test-backend": "node main.js",
"dev": "concurrently \"npm:test-*\"",
"build": "vite build",
"start-backend": "node main.js",
"start-frontend": "(cd dist && http-server)",
"js-nav": "concurrently \"npm:start-*\"",
"postinstall": "node add-script"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mhmmdamiwn/JsNavigator.git"
},
"author": "Amin Esmaili",
"license": "ISC",
"bugs": {
"url": "https://github.com/mhmmdamiwn/JsNavigator/issues"
},
"homepage": "https://github.com/mhmmdamiwn/JsNavigator#readme",
"dependencies": {
"concurrently": "^8.2.0",
"express": "^4.18.2",
"http-server": "^14.1.1",
"open": "^8.4.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.5.0",
"autoprefixer": "^10.4.14",
"clsx": "^1.2.1",
"postcss": "^8.4.24",
"preact": "^10.15.1",
"react-icons": "^4.9.0",
"react-resizable-panels": "^0.0.51",
"tailwind-merge": "^1.13.0",
"tailwindcss": "^3.3.2",
"vis-network": "^9.1.6",
"vite": "^4.3.9"
},
"publishConfig": {
"access": "public"
}
}