-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 984 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
37
38
39
40
41
42
{
"name": "hammerwoodwebsite",
"repository": {
"type": "git",
"url": "git+https://github.com/tcluk/hammerwoodwebsite.git"
},
"bugs": {
"url": "https://github.com/tcluk/hammerwoodwebsite/issues"
},
"homepage": "https://github.com/tcluk/hammerwoodwebsite#readme",
"scripts": {
"format": "prettier . --write --ignore-path .gitignore",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next build && next export -o ./dist"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"useTabs": true
},
"dependencies": {
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"next": "^12.0.4",
"next-mdx-remote": "^3.0.8",
"postcss": "^8.3.11",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/react": "^17.0.35",
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"netlify-cli": "^7.0.0",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
}
}