forked from gatsbyjs/homepage-starters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.66 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
59
{
"name": "gatsby-starter-homepage",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "BDS",
"scripts": {
"start": "gatsby clean && gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit",
"type-watch": "tsc --noEmit --watch",
"prepublish": "husky install",
"create-readmes": "./scripts/create-readmes.mjs",
"publish-starters": "./scripts/publish.js",
"publish-starters:dry-run": "./scripts/publish.js --dry-run"
},
"workspaces": [
"plugins/*",
"themes/*"
],
"dependencies": {
"@fontsource/dm-mono": "^4.5.4",
"@fontsource/dm-sans": "^4.5.3",
"@vanilla-extract/babel-plugin": "^1.1.4",
"@vanilla-extract/css": "^1.6.8",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/webpack-plugin": "^2.1.5",
"gatsby": "^4.9.3",
"gatsby-plugin-image": "^2.9.1",
"gatsby-plugin-sharp": "^4.9.1",
"gatsby-plugin-vanilla-extract": "^2.0.1",
"gatsby-source-filesystem": "^4.9.1",
"gatsby-transformer-sharp": "^4.9.0",
"is-absolute-url": "^4.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"sharp": "^0.30.3"
},
"devDependencies": {
"debug": "^4.3.3",
"fs-extra": "^10.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "2.5.1",
"remark-directive": "^2.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"simple-git": "^3.3.0",
"unified": "^10.1.2",
"typescript": "^4.6.2",
"unist-util-visit": "^4.1.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}