1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
"name": "alee-productions-website",
"version": "1.0.0",
"description": "The official website for Alee Productions.",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "npm run build && next export"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleeproductions/website.git"
},
"author": "Alee",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/aleeproductions/website/issues"
},
"homepage": "https://github.com/aleeproductions/website#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-brands-svg-icons": "^5.15.2",
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"isomorphic-unfetch": "^3.1.0",
"next": "^10.0.5",
"nextjs-redirect": "^5.0.2",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"frontmatter-markdown-loader": "^3.1.0"
}
}
|