-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rb",
"version": "1.4.0",
"description": "My portfolio website created with Next.js presenting projects and blog posts.",
"scripts": {
"dev": "npm run blog && next dev",
"lint": "next lint",
"ts": "tsc --noEmit --incremental",
"build": "next build",
"start": "next start",
"local": "npm run blog && next build && next start",
"analyze": "cross-env ANALYZE=true next build",
"export": "next export",
"deploy": "npm run blog && npm run build && npm run export",
"sitemap": "node ./generate-sitemap.mjs",
"blog": "node ./generate-blog-list.mjs",
"screen": "node ./generate-projects-screens.js https://remybeumier.be/Memory memory.jpg",
"optimize": "node ./optimize-image.js"
},
"author": "Rémy Beumier",
"license": "ISC",
"dependencies": {
"@mdx-js/loader": "2.1.5",
"@mdx-js/react": "2.1.5",
"@next/mdx": "13.0.2",
"aos": "2.3.4",
"cross-env": "7.0.3",
"eslint": "7.32.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "8.3.0",
"globby": "13.1.1",
"gray-matter": "4.0.2",
"next": "12.3.4",
"playwright": "1.34.3",
"prettier": "2.5.1",
"prismjs": "1.27.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "5.2.1",
"remark-frontmatter": "4.0.1",
"sass": "1.37.5",
"sharp": "0.32.1"
},
"devDependencies": {
"@types/node": "14.18.3",
"@types/react": "18.2.51",
"@types/react-dom": "18.2.18",
"eslint": "7.32.0",
"eslint-config-next": "12.0.10",
"multer": "1.4.4",
"typescript": "4.8.3"
}
}