forked from FINAKON/HelpProject
1. Initial Commit - a boiler plate code and POC to realize the concept of context sensitive help 2. Frontend code written in ReactJS 3. Backend code written in Java, Spring Boot Framework 4. Frontend Start: pre-requisites : node, npm npm run dev ==> to start the frontend vite server 5. Backend Start: pre-requisites : java, mvn mvn spring-boot:run ==> to start the backend server 6. Visit http://localhost:5173/ for basic demo of help, press F1 in textboxes 7. Visit http://localhost:5173/editor and enter "admin123" to add/modify texts. Happy Coding !!! Thank you, Bhargava.
39 lines
804 B
JSON
39 lines
804 B
JSON
{
|
|
"name": "convert-source-map",
|
|
"version": "2.0.0",
|
|
"description": "Converts a source-map from/to different formats and allows adding/changing properties.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "tap test/*.js --color"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/thlorenz/convert-source-map.git"
|
|
},
|
|
"homepage": "https://github.com/thlorenz/convert-source-map",
|
|
"devDependencies": {
|
|
"inline-source-map": "~0.6.2",
|
|
"tap": "~9.0.0"
|
|
},
|
|
"keywords": [
|
|
"convert",
|
|
"sourcemap",
|
|
"source",
|
|
"map",
|
|
"browser",
|
|
"debug"
|
|
],
|
|
"author": {
|
|
"name": "Thorsten Lorenz",
|
|
"email": "thlorenz@gmx.de",
|
|
"url": "http://thlorenz.com"
|
|
},
|
|
"license": "MIT",
|
|
"engine": {
|
|
"node": ">=4"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
]
|
|
}
|