-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
54 lines (54 loc) · 2.08 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
{
"name": "pixel-perfect-tailwind",
"private": true,
"epicshop": {
"title": "📐 Pixel Perfect Tailwind",
"description": "Learn how to create pixel-perfect Figma-to-Tailwind implementations.",
"instructor": {
"name": "Simon Vrachliotis",
"avatar": "/images/instructor.png",
"𝕏": "simonswiss"
},
"githubRoot": "https://github.com/epicweb-dev/pixel-perfect-tailwind/tree/main",
"epicWorkshopSlug": "pixel-perfect-figma-to-tailwind",
"forms": {
"exercise": "https://docs.google.com/forms/d/e/1FAIpQLSd_CXGmaqrhEs4ykj2Z92pE17K_HpZwMv81qFVZUyYUfC6-ng/viewform?hl=en&embedded=true&usp=pp_url&entry.768811917={workshopTitle}&entry.279928360={exerciseTitle}",
"workshop": "https://docs.google.com/forms/d/e/1FAIpQLSdBPrvL1FTGs4GV2c2FRhLkboZXNdgf4omm5-zgDEetoAvztQ/viewform?hl=en&embedded=true&usp=pp_url&entry.768811917={workshopTitle}"
}
},
"type": "module",
"scripts": {
"postinstall": "cd ./epicshop && npm install",
"start": "npx --prefix ./epicshop epicshop start",
"dev": "npx --prefix ./epicshop epicshop start",
"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",
"setup": "node ./epicshop/setup.js",
"setup:custom": "node ./epicshop/setup-custom.js",
"lint": "eslint .",
"format": "prettier --write .",
"typecheck": "tsc",
"validate:all": "npm-run-all --parallel --print-label --print-name --continue-on-error test:all lint typecheck"
},
"keywords": [],
"author": "Simon Vrachliotis <simon@simonswiss.com> (https://simonswiss.com/)",
"license": "GPL-3.0-only",
"workspaces": [
"exercises/*/*",
"examples/*"
],
"engines": {
"node": ">=18",
"npm": ">=8.16.0",
"git": ">=2.18.0"
},
"devDependencies": {
"@epic-web/config": "^1.11.2",
"eslint": "^9.5.0",
"prettier": "^3.3.2",
"typescript": "^5.5.2"
},
"prettier": "@epic-web/config/prettier"
}