feat: init basic settings

This commit is contained in:
QiShaoXuan
2022-09-22 15:39:53 +08:00
commit c0b6ee9245
91 changed files with 8017 additions and 0 deletions

31
package.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "affine-pathfinder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@emotion/css": "^11.10.0",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"lit": "^2.3.1",
"next": "12.3.1",
"prettier": "^2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"eslint": "8.22.0",
"eslint-config-next": "12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"typescript": "4.8.3"
}
}