-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
121 lines (121 loc) · 3.16 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
{
"name": "full-stack-foundations",
"private": true,
"epicshop": {
"title": "Full Stack Foundations 🔭",
"subtitle": "Learn the foundational tools and skills of building web applications",
"githubRoot": "https://github.com/epicweb-dev/full-stack-foundations/blob/main",
"product": {
"host": "www.epicweb.dev",
"slug": "full-stack-foundations",
"displayName": "EpicWeb.dev",
"displayNameShort": "Epic Web",
"logo": "/logo.svg",
"discordChannelId": "1161045224907341972",
"discordTags": [
"1161046174439063593",
"1161045839322546277"
]
},
"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",
"build": "npm run build --if-present --workspaces",
"test": "npm run test --silent --prefix playground",
"test:e2e": "npm run test:e2e --silent --prefix playground",
"test:e2e:dev": "npm run test:e2e:dev --silent --prefix playground",
"test:e2e:run": "npm run test:e2e:run --silent --prefix playground",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "Kent C. Dodds <me@kentcdodds.com> (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/**"
]
}