-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.51 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
{
"name": "matthewjmoran.com",
"version": "0.1.0",
"private": true,
"description": "This is the source code for my personal website, matthewjmoran.com",
"main": "index.tsx",
"repository": "https://github.com/mattjmoran/matthewjmoran.com",
"author": "Matthew J. Moran <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next export",
"ssg": "next build && next export && serve out",
"lint": "eslint .",
"prepare": "husky install",
"test": "jest"
},
"dependencies": {
"gray-matter": "^4.0.3",
"marked": "^4.2.4",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/marked": "^4.0.7",
"@types/node": "^18.11.12",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"commitlint-config-gitmoji": "^2.2.6",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"gitmoji-cli": "^7.0.2",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.4",
"prettier": "^2.8.0",
"serve": "^14.1.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}