-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "react-server-components",
"private": true,
"epicshop": {
"title": "React Server Components 🤹",
"githubRoot": "https://github.com/epicweb-dev/react-server-components/blob/main",
"subtitle": "Understand React Server Components and Server Functions by building a framework with them.",
"product": {
"host": "www.epicreact.dev",
"slug": "react-server-components",
"displayName": "EpicReact.dev",
"displayNameShort": "EpicReact",
"logo": "/logo.svg",
"discordChannelId": "1285244676286189569",
"discordTags": [
"1285246046498328627",
"1285245965271302246"
]
},
"onboardingVideo": "https://www.epicweb.dev/tips/get-started-with-the-epic-workshop-app-for-react",
"instructor": {
"name": "Kent C. Dodds",
"avatar": "/images/instructor.png",
"𝕏": "kentcdodds"
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && npm install",
"start": "npx --prefix ./epicshop epicshop start",
"dev": "npx --prefix ./epicshop epicshop start",
"test": "node ./epicshop/test.js",
"setup": "node ./epicshop/setup.js",
"setup:custom": "node ./epicshop/setup-custom.js",
"format": "prettier --write .",
"lint": "eslint ."
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"workspaces": [
"exercises/*/*",
"examples/*"
],
"engines": {
"node": ">=20",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"@epic-web/config": "^1.16.3",
"eslint": "^9.16.0",
"prettier": "^3.4.2"
},
"prettier": "@epic-web/config/prettier"
}