-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 794 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 794 Bytes
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
{
"name": "yo7.dev",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"gray-matter": "^4.0.2",
"linaria": "^2.1.0",
"next": "^10.0.1",
"pkg-dir": "^5.0.0",
"prismjs": "^1.23.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"remark": "^13.0.0",
"remark-html": "^13.0.1",
"remark-prism": "^1.3.4"
},
"devDependencies": {
"@types/node": "^14.14.35",
"@types/pkg-dir": "^2.0.1",
"@types/react": "^17.0.3",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"lint": "prettier --list-different src/**/*.{ts,tsx}",
"lint:fix": "prettier --write src/**/*.{ts,tsx}",
"test:type": "tsc --noEmit"
}
}