-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 929 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": "matty.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "STAMP=$(date -u) next dev",
"compile": "tsc",
"build": "next build",
"deploy": "npm run stamp && STAMP=$(date -u) npm run build",
"export": "next export",
"lint": "next lint",
"stamp": "date -u > ./public/stamp.txt"
},
"dependencies": {
"@netlify/functions": "^1.4.0",
"axios": "^1.4.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.8.0",
"next": "^14.2.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remarkable": "^2.0.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^4.41.3",
"@types/node": "20.5.9",
"@types/react": "18.2.47",
"@types/react-dom": "18.2.1",
"@types/remarkable": "^2.0.3",
"@types/xml2js": "^0.4.12",
"eslint": "8.46.0",
"eslint-config-next": "^13.4.12",
"typescript": "^5.0.4"
}
}