-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.33 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "testing-fundamentals",
"private": true,
"epicshop": {
"title": "Testing Fundamentals",
"subtitle": "",
"githubRoot": "https://github.com/epicweb-dev/testing-fundamentals",
"epicWorkshopSlug": "testing-fundamentals",
"instructor": {
"name": "Artem Zakharchenko",
"avatar": "/images/instructor.png",
"xHandle": "kettanaito"
},
"onboardingVideo": "https://www.epicweb.dev/tips/get-started-with-the-epic-workshop-app",
"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}"
},
"product": {
"host": "www.epicweb.dev",
"slug": "testing-fundamentals",
"displayName": "EpicWeb.dev",
"displayNameShort": "Epic Web",
"logo": "/logo.svg",
"discordChannelId": "1161045224907341972",
"discordTags": [
"1294027040156156036"
]
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && pkgmgr install",
"start": "pkgmgrx --prefix ./epicshop epicshop start",
"dev": "pkgmgrx --prefix ./epicshop epicshop start",
"setup": "pkgmgrx epicshop setup",
"setup:custom": "node ./epicshop/setup-custom.js",
"format": "prettier --write .",
"lint": "eslint .",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "Artem Zakharchenko <kettanaito@gmail.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": {
"@epic-web/config": "^1.16.5",
"@types/node": "^20.12.12",
"@typescript-eslint/parser": "^7.10.0",
"eslint": "^8.57.0",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"pkgmgr": "^1.1.1"
},
"dependencies": {
"prettier": "^3.6.2"
},
"prettier": "@epic-web/config/prettier"
}