-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 784 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 784 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": "contentlayer-benchmark-gatsby",
"version": "0.0.1",
"private": true,
"description": "gatsby",
"author": "Sean C Davis",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit"
},
"browserlist": [">0.25%", "not dead", "supports es6-module"]
"dependencies": {
"gatsby": "^4.12.1",
"gatsby-source-filesystem": "^4.12.1",
"gatsby-transformer-remark": "^5.12.1",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"typescript": "^4.6.2"
}
}