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 :: react computed example 
Javascript :: decode jwt token without library 
Javascript :: multiple replace 
Javascript :: make forn awesome icon clickable in react 
Javascript :: save array file 
Javascript :: js key event 
Javascript :: javascript save as pdf 
Javascript :: js round to x decimal places 
Javascript :: exclude vales from array in js 
Javascript :: vuejs on route scrollbehavior 
Javascript :: datepicker date and time 
Javascript :: onscroll load more in vue native 
Javascript :: change height of div with scroll in javascript 
Javascript :: scroll top javascript 
Javascript :: check variable value and do something 
Javascript :: launch.json 
Javascript :: sort in javascript 
Javascript :: Truncate a string using javascript 
Javascript :: how to target two id using jquery 
Javascript :: method example js 
Javascript :: how to select default searchable dropdown value in jquery 
Javascript :: typescript jsdoc interface 
Javascript :: what is react reveal 
Javascript :: return two arrays javascript 
Javascript :: image react native base64 
Javascript :: how to access response headers in javascript fetch api 
Javascript :: map function in js 
Javascript :: How to pass methods in vue js 
Javascript :: react tweet embed 
Javascript :: big o theory 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =