Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

package.json what is it for

Metadata that is specific to the project.  It contains a collection of any 
given project's dependencies.

A web application is used to identify the project and acts as a 
baseline for users and contributors to get information about the project.
Comment

package.json

{
  "name": "project_syncfusion_dashboard",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "@syncfusion/ej2": "^19.4.48",
    "@syncfusion/ej2-react-calendars": "^19.4.48",
    "@syncfusion/ej2-react-charts": "^19.4.50",
    "@syncfusion/ej2-react-dropdowns": "^19.4.52",
    "@syncfusion/ej2-react-grids": "^19.4.50",
    "@syncfusion/ej2-react-inputs": "^19.4.52",
    "@syncfusion/ej2-react-kanban": "^19.4.48",
    "@syncfusion/ej2-react-popups": "^19.4.52",
    "@syncfusion/ej2-react-richtexteditor": "^19.4.50",
    "@syncfusion/ej2-react-schedule": "^19.4.50",
    "react": "^17.0.2",
    "react-dom": "^17.0.2",
    "react-icons": "^4.3.1",
    "react-router-dom": "^6.2.1",
    "react-scripts": "5.0.0"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "browserslist": {
    "production": [
      ">0.2%",
      "not dead",
      "not op_mini all"
    ],
    "development": [
      "last 1 chrome version",
      "last 1 firefox version",
      "last 1 safari version"
    ]
  },
  "devDependencies": {
    "autoprefixer": "^10.4.2",
    "postcss": "^8.4.6",
    "tailwindcss": "^3.0.19"
  }
}
Comment

what is package.json

metadata specific to the project
a web application, Node.js module, or even just a plain JavaScirpt library. 
identifies the project and acts as a baseline for users and contributors 
to get information about the project.
contains a collection of any given project's dependencies
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript loading animation 
Javascript :: forever loop in js 
Javascript :: rest parameters 
Javascript :: Hide ReactTooltip after hover off 
Javascript :: Kendo Grid export to Excel not working with large data 
Javascript :: react native elements bottom sheet close on back button press 
Javascript :: how to not use relative imports in react js 
Javascript :: check uncheck vanila js 
Javascript :: includes in javascript 
Javascript :: push notification react native 
Javascript :: react js require pasword to have special charaacter 
Javascript :: how to assign empty function in react component props 
Javascript :: download string as file express js 
Javascript :: empty string in javascript 
Javascript :: jquery steps disable finish button 
Javascript :: rc-notification react 
Javascript :: electron open dev tools 
Javascript :: koa access request body 
Javascript :: javascript loop backwards 
Javascript :: time zone browser javascript 
Javascript :: auto delete data from mongobd ,set time , mongoose model, 
Javascript :: java.lang.IllegalArgumentException: Can only download HTTP/HTTPS 
Javascript :: remove duplicated from array 
Javascript :: contextMenus chrome extensions 
Javascript :: how to add a key in a react element 
Javascript :: meteor create package 
Javascript :: javascript seconds after input 
Javascript :: Laravel react 404 routes 
Javascript :: what is on and once in node 
Javascript :: how to remove __proto__ from javascript object 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =