You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
{
|
|
"name": "csc-linktree",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"format": "prettier --write './**/*'",
|
|
"format:check": "prettier --check './**/*'",
|
|
"lint": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet --fix",
|
|
"lint:check": "eslint \"{pages,components}/**/*.{js,ts,tsx,jsx}\" --quiet",
|
|
"check": "npm run format:check && npm run lint:check",
|
|
"check:fix": "npm run format && npm run lint"
|
|
},
|
|
"dependencies": {
|
|
"next": "10.0.7",
|
|
"react": "17.0.1",
|
|
"react-dom": "17.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^14.14.31",
|
|
"@types/react": "^17.0.2",
|
|
"@types/react-dom": "^17.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
"@typescript-eslint/parser": "^4.16.1",
|
|
"autoprefixer": "^10.2.4",
|
|
"eslint": "^7.21.0",
|
|
"eslint-config-prettier": "^8.1.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-prettier": "^3.3.1",
|
|
"eslint-plugin-react": "^7.22.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"husky": "^5.1.3",
|
|
"postcss": "^8.2.6",
|
|
"prettier": "^2.2.1",
|
|
"stylelint": "^13.11.0",
|
|
"stylelint-config-standard": "^20.0.0",
|
|
"tailwindcss": "^2.0.3",
|
|
"typescript": "^4.2.2"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-push": "git diff HEAD --quiet && npm run check:fix"
|
|
}
|
|
}
|
|
}
|
|
|