-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2 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
{
"name": "epic-workshop",
"private": true,
"type": "module",
"scripts": {
"cli": "tsx ./packages/workshop-cli/src/cli.ts",
"postinstall": "cd ./example && npm install --prefer-offline --no-audit --no-fund",
"typecheck": "./other/nx-fallback.js run-many --target typecheck",
"lint": "./other/nx-fallback.js lint",
"build": "./other/nx-fallback.js run-many --target build",
"prestart": "npm run build -s",
"setup": "npm install && npm run validate",
"go": "cross-env NODE_ENV=development EPICSHOP_CONTEXT_CWD=$PWD/packages/example tsx watch $@",
"start": "cross-env NODE_ENV=production npm --prefix example run start",
"dev": "npm --prefix example run start",
"warm": "npm --prefix example run warm",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "./other/nx-fallback.js test:e2e",
"format": "./other/nx-fallback.js format:write",
"validate": "./other/nx-fallback.js run-many --target build,typecheck,lint,test --parallel"
},
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com/)",
"license": "GPL-3.0-only",
"engines": {
"node": ">=24.0.0"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@epic-web/config": "^1.24.1",
"@nx/devkit": "22.5.0",
"@nx/js": "22.5.0",
"@nx/playwright": "22.5.0",
"@nx/workspace": "22.5.0",
"@playwright/test": "^1.58.2",
"@types/yargs": "^17.0.35",
"cross-env": "^10.1.0",
"dotenv": "^17.3.0",
"execa": "^9.6.1",
"get-stream": "^9.0.1",
"globby": "^16.1.0",
"npm-run-all": "^4.1.5",
"nx": "22.5.0",
"oxlint": "^1.50.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"react-router": "^7.13.0",
"tsx": "^4.21.0",
"yargs": "^18.0.0",
"yoctocolors": "^2.1.2"
},
"nx": {
"includedScripts": []
},
"devDependencies": {
"chromium-bidi": "^15.0.0",
"unicorn-magic": "^0.4.0",
"vitest": "^4.0.18"
},
"overrides": {
"unicorn-magic": "^0.4.0",
"vite": "7.3.1"
}
}