-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
83 lines (83 loc) · 2.43 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
{
"name": "advanced-react-apis",
"private": true,
"epicshop": {
"title": "Advanced React APIs 🔥",
"subtitle": "Learn the more advanced React APIs and different use cases to enable great user experiences.",
"githubRepo": "https://github.com/epicweb-dev/advanced-react-apis",
"stackBlitzConfig": {
"view": "editor"
},
"product": {
"host": "www.epicreact.dev",
"slug": "advanced-react-apis",
"displayName": "EpicReact.dev",
"displayNameShort": "Epic React",
"logo": "/logo.svg",
"discordChannelId": "1285244676286189569",
"discordTags": [
"1285246046498328627",
"1285245763428810815"
]
},
"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",
"imports": {
"#*": "./*"
},
"prettier": "@epic-web/config/prettier",
"scripts": {
"postinstall": "cd ./epicshop && npm install",
"start": "npx --prefix ./epicshop epicshop start",
"dev": "npx --prefix ./epicshop epicshop start",
"setup": "node ./epicshop/setup.js",
"setup:custom": "node ./epicshop/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "Kent C. Dodds <[email protected]> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"dependencies": {
"react": "19.0.0-beta-94eed63c49-20240425",
"react-dom": "19.0.0-beta-94eed63c49-20240425"
},
"devDependencies": {
"@epic-web/config": "^1.11.2",
"@epic-web/workshop-utils": "^5.9.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"eslint": "^9.5.0",
"eslint-plugin-react-hooks": "5.1.0-beta-94eed63c49-20240425",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom",
"eslint-plugin-react-hooks": "$eslint-plugin-react-hooks"
},
"engines": {
"node": ">=20",
"npm": ">=9.3.0",
"git": ">=2.18.0"
},
"prettierIgnore": [
"node_modules",
"**/build/**",
"**/public/build/**",
".env",
"**/package.json",
"**/tsconfig.json",
"**/package-lock.json",
"**/playwright-report/**"
]
}