This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.86 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "sbstr8",
"version": "0.1.0",
"description": "A nearly-unstyled, hackable, ultra-modern, ultra-clean scaffold for rich, interactive storytelling, journalism and blogging. Fork this repo and get to work",
"scripts": {
"dev": "npx next",
"build": "npx next build",
"start": "npx next start",
"type-check": "npx tsc --noEmit",
"lint": "npx eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "npx prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"storybook": "npx storybook dev -s ./public -p 6006",
"build-storybook": "npx storybook build -s ./public",
"test": "npx jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elmarsto/sbstr8.git"
},
"keywords": [
"sbstr8",
"nextjs",
"storytelling",
"blog"
],
"files": [
"LICENSE",
"jest.config.ts",
"next-env.d.ts",
"next.config.js",
"postcss.config.js",
"public/",
"renovate.json",
"sbstr8-config.ts",
"src/",
"tailwind.config.js",
"tsconfig.json"
],
"author": "@elmarsto",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/elmarsto/sbstr8/issues"
},
"homepage": "https://github.com/elmarsto/sbstr8#readme",
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"npx eslint --ignore-path .gitignore --fix",
"npx prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@apollo/client": "3.7.16",
"@apollo/server": "4.7.5",
"@as-integrations/next": "2.0.0",
"@codesandbox/sandpack-react": "2.6.9",
"@fortawesome/fontawesome-svg-core": "6.4.0",
"@fortawesome/free-brands-svg-icons": "6.4.0",
"@fortawesome/free-regular-svg-icons": "6.4.0",
"@fortawesome/free-solid-svg-icons": "6.4.0",
"@fortawesome/react-fontawesome": "0.2.0",
"@headlessui/react": "1.7.15",
"@mdx-js/loader": "2.3.0",
"@mdx-js/mdx": "2.3.0",
"@mdx-js/react": "2.3.0",
"@next/mdx": "13.4.7",
"@observablehq/plot": "0.6.8",
"@sindresorhus/class-names": "2.0.0",
"@types/react-fontawesome": "1.6.5",
"autoprefixer": "10.4.14",
"date-fns": "2.30.0",
"feed": "4.2.2",
"graphql": "16.7.1",
"graphql-tag": "2.12.6",
"graphql-tools": "9.0.0",
"next": "13.4.7",
"postcss": "8.4.24",
"ramda": "0.29.0",
"raw-loader": "4.0.2",
"react": "18.2.0",
"react-cool-dimensions": "3.0.1",
"react-dom": "18.2.0",
"react-mermaid3": "1.0.1",
"react-remark": "2.1.0",
"rehype-img-size": "1.0.1",
"rehype-stringify": "9.0.3",
"remark-parse": "10.0.2",
"remark-rehype": "10.1.0",
"tailwindcss": "3.3.2",
"url-join": "5.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@storybook/addon-essentials": "7.0.24",
"@storybook/addon-interactions": "7.0.24",
"@storybook/addon-links": "7.0.24",
"@storybook/addon-styling": "1.3.1",
"@storybook/blocks": "7.0.24",
"@storybook/nextjs": "7.0.24",
"@storybook/react": "7.0.24",
"@storybook/testing-library": "^0.2.0",
"@types/node": "20.3.2",
"@types/ramda": "0.29.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@types/rss": "0.0.30",
"@types/video.js": "7.3.52",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"eslint": "8.43.0",
"eslint-config-next": "13.4.7",
"eslint-config-prettier": "8.8.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lint-staged": "13.2.2",
"postcss-cli": "10.1.0",
"postcss-utilities": "0.8.4",
"prettier": "2.8.8",
"storybook": "7.0.24",
"typescript": "5.1.5",
"video.js": "8.3.0"
}
}