mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2026-02-05 05:02:14 +00:00
init: create project with settings
This commit is contained in:
38
package.json
Normal file
38
package.json
Normal file
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
"fix": "run-s fix:*",
|
||||
"fix:path": "yarn path",
|
||||
"fix:type": "yarn typecheck",
|
||||
"fix:lint": "yarn lint --fix",
|
||||
"fix:format": "yarn format",
|
||||
"path": "pathpida -o ./src/libs --ignorePath .gitignore --enableStatic",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"lint": "eslint src --cache",
|
||||
"format": "prettier --write './**/*.{js,jsx,ts,tsx,json,css}'"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "12.1.0",
|
||||
"react": "17.0.2",
|
||||
"react-dom": "17.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^16.11.45",
|
||||
"@types/react": "17.0.41",
|
||||
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
||||
"@typescript-eslint/parser": "^5.15.0",
|
||||
"eslint": "8.11.0",
|
||||
"eslint-config-airbnb": "^19.0.4",
|
||||
"eslint-config-airbnb-typescript": "^16.1.4",
|
||||
"eslint-config-next": "12.1.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"pathpida": "^0.18.0",
|
||||
"prettier": "^2.6.0",
|
||||
"typescript": "4.6.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user