mirror of
https://github.com/ershisan99/DevToysWeb.git
synced 2025-12-16 20:49:23 +00:00
62 lines
1.7 KiB
JSON
62 lines
1.7 KiB
JSON
{
|
|
"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": {
|
|
"@emotion/cache": "^11.7.1",
|
|
"@emotion/react": "^11.8.2",
|
|
"@emotion/server": "^11.4.0",
|
|
"@emotion/styled": "^11.8.1",
|
|
"@fontsource/roboto": "^4.5.3",
|
|
"@mui/icons-material": "^5.5.1",
|
|
"@mui/material": "^5.5.1",
|
|
"ace-builds": "^1.4.14",
|
|
"create-hash": "^1.2.0",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"fp-ts": "^2.11.9",
|
|
"fuse.js": "^6.5.3",
|
|
"html-entities": "^2.3.3",
|
|
"js-base64": "^3.7.2",
|
|
"jwt-decode": "^3.1.2",
|
|
"next": "12.1.0",
|
|
"react": "17.0.2",
|
|
"react-ace": "^9.5.0",
|
|
"react-dom": "17.0.2",
|
|
"recoil": "^0.6.1",
|
|
"uuid": "^8.3.2",
|
|
"yaml": "^1.10.2"
|
|
},
|
|
"devDependencies": {
|
|
"@emotion/babel-plugin": "^11.7.2",
|
|
"@types/create-hash": "^1.2.2",
|
|
"@types/node": "^16.11.45",
|
|
"@types/react": "17.0.41",
|
|
"@types/uuid": "^8.3.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.15.0",
|
|
"@typescript-eslint/parser": "^5.15.0",
|
|
"babel-plugin-import": "^1.13.3",
|
|
"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"
|
|
}
|
|
}
|