-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
78 lines (78 loc) · 2.5 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
{
"name": "mocking-techniques",
"private": true,
"epicshop": {
"title": "Mocking Techniques in Vitest",
"subtitle": "Everything to know about mocking in JavaScript",
"epicWorkshopSlug": "mocking-techniques",
"githubRoot": "https://github.com/epicweb-dev/mocking-techniques/blob/main",
"forms": {
"exercise": "https://docs.google.com/forms/d/e/1FAIpQLSf8xpntKQzPYYO9H1OvMcxEa224PqmhVeYfUSj_MotHy-fSUQ/viewform?usp=pp_url&entry.1709952199={workshopTitle}&entry.1597352702={exerciseTitle}",
"workshop": "https://docs.google.com/forms/d/e/1FAIpQLSd4xYc0qW-q3vXbVh2YoU4i3OVinvUdOs3kpkEi5WKmxPu5ew/viewform?usp=pp_url&entry.1709952199={workshopTitle}"
},
"instructor": {
"name": "Artem Zakharchenko",
"avatar": "/images/instructor.png",
"xHandle": "kettanaito"
},
"testTab": {
"enabled": false
},
"onboardingVideo": "https://www.epicweb.dev/tips/get-started-with-the-epic-workshop-app",
"product": {
"host": "www.epicweb.dev",
"slug": "mocking-techniques-in-vitest",
"displayName": "EpicWeb.dev",
"displayNameShort": "Epic Web",
"logo": "/logo.svg",
"discordChannelId": "1161045224907341972",
"discordTags": [
"1294027040156156036"
]
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && npm install",
"build": "npm run build --if-present --workspaces",
"start": "npx --prefix ./epicshop epicshop start",
"dev": "npx --prefix ./epicshop epicshop start",
"test": "npm run test --silent --prefix playground",
"setup": "node ./setup.js",
"setup:custom": "node ./epicshop/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc -b",
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
},
"keywords": [],
"author": "Artem Zakharchenko <me@kettanaito.com> (https://kettanaito.com/)",
"license": "GPL-3.0-only",
"eslintIgnore": [
"/node_modules",
"/build",
"/public/build"
],
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
}
},
"workspaces": [
"exercises/*/*"
],
"engines": {
"node": ">=20.11.0",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"@types/node": "^20.11.6",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}