This repository was archived by the owner on Mar 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 KB
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
{
"name": "splitgraph.com",
"version": "0.0.1",
"description": "Monorepo for splitgraph.com JS projects (docs, website)",
"main": "index.js",
"repository": "git@github.com:splitgraph/splitgraph.com.git",
"author": "Splitgraph",
"license": "MIT",
"private": true,
"workspaces": [
"design",
"tdesign",
"docs",
"content",
"content-scripts",
"templaters",
"lib",
"react-dropzone-uploader-wrapper"
],
"resolutions": {
"@storybook/react/webpack": "5.51.1"
},
"scripts": {
"typecheck-and-build": "yarn run typecheck && yarn run build",
"build": "yarn workspace @splitgraph/docs run build",
"typecheck": "yarn run typecheck-docs",
"dev": "yarn run dev:@splitgraph/docs",
"deploy": "yarn workspace @splitgraph/docs run deploy",
"update-docs": "node ./content-scripts/updateDocs.js",
"dev:@splitgraph/docs": "yarn workspace @splitgraph/docs run dev",
"typecheck-docs": "yarn tsc --build --verbose docs",
"debug-yarn": "NODE_OPTIONS=\"$NODE_OPTIONS --inspect-brk=0.0.0.0:9229\" node .yarn/releases/yarn-berry.js"
},
"devDependencies": {
"prettier": "2.2.1",
"typescript": "4.3.4"
},
"dependencies": {
"next-seo": "4.23.0",
"react-helmet": "6.1.0",
"remark-sectionize": "1.1.1",
"rss": "1.2.2"
},
"packageManager": "yarn@2.4.2"
}