-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
56
57
58
{
"name": "brti.dev",
"version": "2.2.0",
"description": "A personal web site, portfolio, and blog",
"license": "ISC",
"main": "pages/_app.js",
"scripts": {
"dev": "next dev",
"#build": "`next export` uses static export; Use only `next build` for other deploy options.",
"build": "next build && next export",
"start": "next start",
"#clean": "Clean up dist files generated on dev, old builds, etc; Optimally done before new builds",
"clean": "npx rimraf .next out",
"newpost": "node ./scripts/new-post.js",
"test": "jest --watch"
},
"dependencies": {
"@reach/skip-nav": "^0.17.0",
"@vercel/edge-config": "^0.1.8",
"date-fns": "^2.21.3",
"gray-matter": "^4.0.3",
"highlight.js": "^10.7.2",
"markdown-it": "^12.0.6",
"markdown-it-deflist": "^2.1.0",
"markdown-it-footnote": "^3.0.2",
"matterial": "^2.2.1",
"next": "^12.1.6",
"normalize.css": "^8.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"sass": "^1.51.0",
"source-map-support": "^0.5.21"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dr-spaceman/Matt-Berti-Portfolio.git"
},
"author": "Matt Berti",
"homepage": "https://brti.dev",
"devDependencies": {
"@testing-library/dom": "^8.11.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/next": "^9.0.0",
"@types/node": "^20.11.17",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.3",
"@types/react-test-renderer": "^17.0.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.3.1",
"open": "^8.0.4",
"react-test-renderer": "^17.0.2",
"typescript": "^4.6.4"
}
}