-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.06 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.06 KB
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
{
"name": "react-component-testing-with-vitest",
"private": true,
"epicshop": {
"title": "Advanced Vitest Patterns",
"subtitle": "Become Vitest superuser",
"githubRepo": "https://github.com/epicweb-dev/advanced-vitest-patterns",
"instructor": {
"name": "Artem Zakharchenko",
"avatar": "/images/instructor.png",
"xHandle": "kettanaito"
},
"onboardingVideo": "https://www.epicweb.dev/tips/get-started-with-the-epic-workshop-app",
"product": {
"host": "www.epicweb.dev",
"slug": "advanced-vitest-patterns",
"displayName": "EpicWeb.dev",
"displayNameShort": "Epic Web",
"logo": "/logo.svg",
"discordChannelId": "1161045224907341972",
"discordTags": [
"1161046174439063593",
"1409569268143493120"
]
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && pkgmgr install",
"start": "pkgmgrx --prefix ./epicshop epicshop start",
"dev": "pkgmgrx --prefix ./epicshop epicshop start",
"test": "pkgmgr run test --silent --prefix playground",
"setup": "pkgmgrx epicshop setup",
"setup:custom": "node ./epicshop/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"test:all": "find exercises -type f -name package.json -print0 | xargs -0 -n1 dirname | grep -E '/[^/]*\\.solution\\.[^/]*$' | xargs -I{} npm -w {} run test --if-present",
"check": "npm run typecheck && npm run lint && npm run test:all",
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
},
"keywords": [],
"author": "Artem Zakharchenko <kettanaito@gmail.com> (https://kettanaito.com/)",
"license": "GPL-3.0-only",
"workspaces": [
"exercises/*/*"
],
"engines": {
"node": ">=24.0.0",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"@epic-web/config": "^1.19.0",
"eslint": "^9.24.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3",
"pkgmgr": "^1.1.1"
},
"prettier": "@epic-web/config/prettier"
}