-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
116 lines (116 loc) · 2.8 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
{
"name": "web-forms",
"private": true,
"epicshop": {
"title": "Professional Web Forms 📝",
"subtitle": "Learn the primary mechanism for interactivity on the web.",
"githubRoot": "https://github.com/epicweb-dev/web-forms/blob/main",
"product": {
"host": "www.epicweb.dev",
"slug": "professional-web-forms",
"displayName": "EpicWeb.dev",
"displayNameShort": "Epic Web",
"logo": "/logo.svg",
"discordChannelId": "1161045224907341972",
"discordTags": [
"1161046174439063593",
"1161045873858449580"
]
},
"onboardingVideo": "https://www.epicweb.dev/tips/get-started-with-the-epic-workshop-app",
"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",
"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",
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5"
},
"eslintIgnore": [
"**/node_modules/**",
"**/build/**",
"**/public/build/**",
"**/playwright-report/**",
"**/test-results/**",
"**/server-build/**"
],
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 2023,
"sourceType": "module"
}
},
"workspaces": [
"exercises/*/*",
"examples/*"
],
"engines": {
"node": ">=20",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"prettier": {
"arrowParens": "avoid",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleAttributePerLine": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": true,
"overrides": [
{
"files": [
"**/*.json"
],
"options": {
"useTabs": false
}
},
{
"files": [
"**/*.mdx"
],
"options": {
"proseWrap": "preserve",
"htmlWhitespaceSensitivity": "ignore"
}
}
]
},
"prettierIgnore": [
"node_modules",
"**/build/**",
"**/public/build/**",
".env",
"**/package-lock.json",
"**/playwright-report/**"
]
}