-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.72 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
55
{
"name": "ericbaer.com",
"description": "Eric Baer's personal website and blog",
"version": "1.0.0",
"author": "Eric Baer",
"license": "MIT",
"scripts": {
"analyze-code:lint-js": "next lint",
"analyze-code:prettier": "prettier --list-different '**/*.{js,jsx,ts,tsx,json,css,md,yaml}'",
"analyze-code": "npm run analyze-code:lint-js && npm run analyze-code:prettier",
"build:dev": "NODE_ENV=development next build",
"build:production": "NODE_ENV=production next build",
"dev": "next dev",
"fix:lint-js": "next lint",
"fix:prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,md,yaml}'",
"fix": "npm run fix:lint-js && npm run fix:prettier",
"prepare": "husky install",
"serve-static": "nodemon --watch out --exec 'serve out -l 7000'",
"start": "next start"
},
"devDependencies": {
"@types/lodash": "4.14.197",
"@types/node": "18.16.3",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.4",
"autoprefixer": "10.4.14",
"date-fns": "2.29.3",
"eslint": "8.48.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "8.8.0",
"gray-matter": "4.0.3",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"lodash": "4.17.21",
"next": "13.4.4",
"nodemon": "2.0.22",
"postcss": "8.4.23",
"prettier": "2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"rehype-prism-plus": "1.5.1",
"rehype-slug": "5.1.0",
"rehype-stringify": "9.0.3",
"remark": "14.0.3",
"remark-breaks": "3.0.2",
"remark-gfm": "3.0.1",
"remark-html": "15.0.2",
"remark-parse": "10.0.1",
"remark-rehype": "10.1.0",
"serve": "14.2.0",
"tailwindcss": "3.3.2",
"typescript": "5.2.2",
"unified": "10.1.2"
}
}