-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 995 Bytes
/
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
{
"name": "sinclair.tech",
"description": "Personal website of David Sinclair",
"author": "David Sinclair <[email protected]> (https://sinclair.tech)",
"homepage": "https://sinclair.tech",
"version": "12.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "stylelint '**/*.scss' && next lint && prettier --check .",
"fix": "stylelint '**/*.scss' --fix && next lint --fix && prettier --write ."
},
"dependencies": {
"@sparticuz/chromium": "^121",
"@vercel/analytics": "^1",
"classnames": "^2",
"date-fns": "^2",
"lodash": "^4",
"next": "^14",
"next-mdx-remote": "^4",
"puppeteer-core": "^22",
"react": "^18",
"react-dom": "^18",
"sass": "^1"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-next": "^14",
"eslint-config-prettier": "^9",
"prettier": "^2",
"stylelint": "^15",
"stylelint-config-standard-scss": "^11"
}
}