1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{
"name": "sei-website",
"version": "0.1.0",
"repository": "https://github.com/Alee14/sei-website",
"author": "Andrew Lee <alee14498@protonmail.com>",
"license": "GPL-3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "12.3.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"eslint": "8.25.0",
"eslint-config-next": "12.3.1"
}
}
|