Skip to content

Commit

Permalink
feat(*): Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Apr 21, 2023
0 parents commit d611b67
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env.local
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel

yarn.lock
package-lock.json
3 changes: 3 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
reactStrictMode: true,
};
38 changes: 38 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"name": "merahputih.moe",
"author": "ScathachGrip",
"license": "MIT",
"version": "1.1.7",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"lint:fix": "eslint src --fix"
},
"dependencies": {
"next": "12.1.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"sass": "^1.49.9"
},
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"autoprefixer": "^10.4.2",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.1.0",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.12",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.0"
}
}
38 changes: 38 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@*": [
"./src/*"
]
},
"incremental": true
},
"exclude": [
"node_modules",
".next",
"out"
],
"include": [
"next-env.d.ts",
"src/**/*.tsx",
"src/**/*.ts"
]
}

0 comments on commit d611b67

Please sign in to comment.